I reckon if you'd give your videos a more distinct title or thumbnail it would increase the VOD-numbers alot , because right now , i can't just scroll through your episodes for topics that might be interesting or i just want to catch up on. because every VOD is the same.
@SofiaPereira-f9c2 ай бұрын
Concerning the date, why not just use Format? So, the expression would be something along the line of: =Format(Fields!FieldName.Value, "dd MMMM yyyy")
@ant1d0te3 ай бұрын
15 minutes meeting =15 meetings lasting about a minute each? I am not good at English :)
@SteveEndow3 ай бұрын
It should be 15 minute meeting--"minute" is singular because it's an adjective, and Joselin has now taught me that adjectives are never plural in English So "15 minute meeting" (meeting = noun) or "We are meeting for 15 minutes" (meeting = gerund) I've spoken English my entire life, but do not know the grammar rules. A Salvadoran had to teach me English!
@335LINZ3 ай бұрын
I just have to post back to you a really powerful statement you made: The word excellence is not an accident. We have to do everything better. Everything; every detail, every task we need to notice more than the partner more than the customer. We need to do it better and cleaner. Just nail it so that it’s just no question. So well put, thanks.
@ant1d0te3 ай бұрын
34:00 - 640kB will be enough for everyone! :D
@ant1d0te3 ай бұрын
9:00 most probably it is not one person, but group of people and one editor ;)
@ant1d0te3 ай бұрын
9:00 you could open a ticket at MS Support with specifying this ticket, so they may increase its priority.
@ant1d0te3 ай бұрын
1:24:00 I love to watch such videos too :) mechanics, woodworkers - love to see how chaos is reorganized into beauty :)
@alainkrikilion54444 ай бұрын
Completely agree. I want exact dates and a weekday too. AND ABSOLUTELY NOT IN US FORMAT! The non US format is already bad enough. The US format is completely crazy. Why can't they just use YYYY-MM-DD or even YYYY/MM/DD? Like writing one hundred twenty three as 321 (non US format) or 231 (US format).
@a.l37095 ай бұрын
Great!
@bhmtraders34575 ай бұрын
Possible to get bound action result as response. now its no content
@ant1d0te5 ай бұрын
34:50 I'd recommend using Visual Studio (not Code!) with report builder extension for modification of RDLC layouts - much more advanced and usable. But requires installation of massive VS :\
@nemanjavelickovic90626 ай бұрын
Very resourcefull! Thanks, brother!
@tedcjohnston6 ай бұрын
😊Are the avocados edible? They sound very hard when they hit the roof.
@SteveEndow6 ай бұрын
Yes, to my surprise, they are edible. They are quite firm off the tree, but ripen nicely
@ant1d0te7 ай бұрын
Is Thursday Sales Invoice Import Challenge need to be non-coding? or small AL file for tiny PTE would work too?
@ant1d0te7 ай бұрын
if code is ok, then here it is: no foolproof, simple import based on the design pageextension 50000 "CSV Sales Invoice List" extends "Sales Invoice List" { actions { addlast(processing) { action("CSV ImportFromCSV") { ApplicationArea = All; Caption = 'Import From CSV'; Image = Import; ToolTip = 'Import Sales Invoice'; trigger OnAction() var SH: Record "Sales Header"; SL: Record "Sales Line"; CSVB: Record "CSV Buffer"; InS: InStream; i, LineNo: Integer; DateVal: Date; DecVal: Decimal; begin if not UploadIntoStream('Select CSV File', InS) then exit; CSVB.LoadDataFromStream(InS, ','); for i := 2 to CSVB.GetNumberOfLines() do begin // Skip header if CSVB.GetValue(i, 2) <> SH."External Document No." then begin SH.Init(); SH.Validate("Document Type", SH."Document Type"::Invoice); SH.Insert(true); SH.Validate("Sell-to Customer No.", CSVB.GetValue(i, 1)); // Customer SH.Validate("External Document No.", CSVB.GetValue(i, 2)); // InvoiceNo Evaluate(DateVal, CSVB.GetValue(i, 3)); // Date SH.Validate("Document Date", DateVal); SH.Modify(true); LineNo := 0; end; LineNo += 10000; SL.Init(); SL.Validate("Document Type", SH."Document Type"); SL.Validate("Document No.", SH."No."); SL.Validate("Line No.", LineNo); SL.Insert(true); SL.Validate(Type, SL.Type::Item); SL.Validate("No.", CSVB.GetValue(i, 4)); // Item Evaluate(DecVal, CSVB.GetValue(i, 5)); // Qty SL.Validate("Quantity", DecVal); Evaluate(DecVal, CSVB.GetValue(i, 6)); // Unit Price SL.Validate("Unit Price", DecVal); SL.Modify(true); end; end; } } addlast(Category_Process) { actionref("CSV ImportFromCSV_Promoted"; "CSV ImportFromCSV") { } } } }
@SteveEndow7 ай бұрын
If there is a simple PTE solution, that might work. On Twitter, Shannon noted that she typically develops an XMLPort for simple integrations.
@klauskaan63207 ай бұрын
PTE artifacts from pipeline should just be deployed to the tenant once it has been build.
@tedcjohnston7 ай бұрын
You may want to let folks know that Git is a program you have to download and install in order to track stuff. Tripped me up when I was starting to learn Git.
@matthiasra18067 ай бұрын
That video saved me hours of more research and told me the correct API uri for my local docker environment. Would have never guessed to add ?tenant=default. Thanks <3
@SteveEndow7 ай бұрын
Awesome! I definitely wasted some time figuring it out as well!
@GGSoft20097 ай бұрын
Thanks a lot
@akzil24207 ай бұрын
Hi, Steve, thanks for your content, I would like to know is your BC academy only for people in Latin America?
@SteveEndow7 ай бұрын
Hi Askhat, at this time, yes, the training and live classes will only be in El Salvador. However, I will be working on putting it all online in a "Learning Management System" so that anyone in the world can take the training. But that is a lot of additional work (additional written content, comprehension questions, quizzes / tests, etc.), so I will need to build that over the next several months.
@drewkipfer54048 ай бұрын
Hi Steve, really enjoy your content! Quick question for you. We have developed a fairly extensive PTE for our company that we manage ourselves. Would you recommend a tool like Cosmo Alpaca for Dev-Ops for a singular project like this? Thanks!
@SteveEndow8 ай бұрын
Hi Drew, if you have a dev ops and pipeline solution (DevOps with Pipelines or AL-Go for GitHub) and you are comfortable maintaining and supporting your pipelines and build agents for your PTE, then Alpaca may not offer much value. However, if you don't yet have automatic & scheduled pipelines for Current, Next Minor, and Next Major, or you don't want to maintain a DevOps Build Agent, then I think it's a great solution, and worth the effort to learn and migrate. Or, if you don't want to maintain BC Docker Containers for your dev environments, Alpaca can take care of that as well.
@ChadBruels8 ай бұрын
I recently had the pleasure of working on an EDI project for the first time. Fortunately (or unfortunately?) I was insulated from needing to learn a host of complex file formats. I don't quite understand why humans create systems where things are labeled EDI 940, 850, 856, etc. It doesn't feel like a convenient short-hand, it feels like a barrier to entry.
@SteveEndow8 ай бұрын
One would assume that EDI was created by a cumbersome committee filled with technical geeks ;-) Since you're a fan of EDI numbers, may I introduce you to numbered RFCs? ;-) www.ietf.org/rfc/rfc9293.html
@Thr35h8 ай бұрын
Thank You, Steve, For this awesome explanation.
@tedcjohnston8 ай бұрын
CEST is Central European Summer Time. I learned this this morning…..
@philipkhln9 ай бұрын
Thank you very much. I was struggling with the hostname and authentication. Your video helped me figure it out!
@humphkaltved96549 ай бұрын
😁 Promo-SM
@ExcelObianyiscoarts11 ай бұрын
If we can't use Rijndael to encrypt our secret text, what method asides from System.Encrypt can we use to encrypt the secret with the my generated key. System.Encrypt only allows a single parameter and therefore I can not encrypt my secret with my generated key.
@AdmiralWestLLC Жыл бұрын
what about covering authentication?
@DoomerCode Жыл бұрын
sir how i can get Codeunit (Assert,library-Sales,library-Utility) please help me
@HazardNY Жыл бұрын
Is there a way to determine which entities are added to NavigationProperty? And add a new one if needed?
@StupidLoveAI Жыл бұрын
Amazing man! Inspiring energy!
@SteveEndow Жыл бұрын
Thanks 🙏
@DavidFahrney Жыл бұрын
Kudos to you both! I am very impressed with your endeavor!
@SteveEndow Жыл бұрын
Thank you sir 🙏
@ExcelObianyiscoarts Жыл бұрын
I so much love your videos.
@ExcelObianyiscoarts Жыл бұрын
Try linking the no series in your Card page.
@ExcelObianyiscoarts Жыл бұрын
Nice video. I just made me to remember the mistakes I made when I started learning BC😁
@ExcelObianyiscoarts Жыл бұрын
I tried choosing the latest target platform which was at that point 12.0 and I couldn't work with it. So, what do you think was the problem?
@ExcelObianyiscoarts Жыл бұрын
Nice
@ExcelObianyiscoarts Жыл бұрын
Nice tutorial, but I couldn't see the docker setup.
@SteveEndow Жыл бұрын
If you are using Windows 10 or 11, you will want to use Docker Desktop for windows www. docker. com/ products/ docker-desktop/ (remove spaces from URL) Let me know if that is what you are looking for.
@ExcelObianyiscoarts Жыл бұрын
Thanks@@SteveEndow
@ExcelObianyiscoarts Жыл бұрын
@@SteveEndow I would continue to ask questions whenever I need help😁
@volkerkrause2090 Жыл бұрын
Hi there. Thanks for your efforts. My two cents on this: Overloads for En/Decrypting from/to streams would be nice. Or even better a wrapper around CryptoStream + some of the more important/popular/common providers.
@reyyajayi208 Жыл бұрын
Hi Steve! Thanks a lot for your videos. I have not been able to download the pdf. I get the error message "unable to render code block" every time. I've been at it for days. Is there somewhere I can get it please?
@SteveEndow Жыл бұрын
You are unable to download the AL for Beginners PDF from GitHub? Try this direct PDF, and also try using a different browser Chrome vs Firefox vs Edge to see if that helps. Last, try opening a Private Mode / Incognito Mode browser window in case you have a browser extension that is causing the issue. github .com/ mynavblog/ALForBeginners/blob/main/Current%20Version%20-%202022/Programming%20in%20AL%20for%20Beginners.pdf
@emancia35 Жыл бұрын
I live in Las Vegas good channel, thank you to share your knowledge. And I'm Salvadoreno. I have couple years like BC technical consultant. I love your project in El Salvador.
@emancia35 Жыл бұрын
Thank you, to show us... the real Life of AL code on BC 🎉
@reyyajayi208 Жыл бұрын
Hi! Were you able to get this file? I've tried everything but the download link isn't working
@emancia35 Жыл бұрын
2 😊 BC. Gurus 🎉🎉🎉
@emancia35 Жыл бұрын
Sorry, who is her?
@emancia35 Жыл бұрын
How do you know if related Business central in El Salvador, why El Salvador??
@jackpeterson480 Жыл бұрын
You can just right click on an analysis mode pivot table and export it to excel
@emancia35 Жыл бұрын
It's a Great project, I started with BC, around 1 year. Living in Las Vegas, and I'm Salvadorean... AL, docker, so on... you are right...
@emancia35 Жыл бұрын
Thank you, to explain it. Sometimes we have not idea how to start... again thank you🎉