Forum Post: RE: Table with Sales Order Production Order Link for Reporting
Then, probably, Item Appliation Entry table is what you need. This table keeps the history of all item transitions as a graph adjacency list. But when orders are posted, you won't get all information...
View ArticleForum Post: RE: Create a Freight Calculator Page in AL - Dynamics 365...
AL has some limitations compared to C/AL, but drop-down functionality is not one of them. You can do the same things in both. To show certain fields in the drop-down list, create the Dropdown field...
View ArticleForum Post: RE: Problem sending JSON to a REST api
HttpWebRequest := HttpWebRequest.Create( UseURL); HttpWebRequest.Timeout := 30000; HttpWebRequest.Method := FORMAT(WSCWebService."JSON-Rest HttpVerb"); // GET, POST, PUT ... HttpWebRequest.ContentType...
View ArticleForum Post: RE: Problem sending JSON to a REST api
Hi, Thanks for your answer. I've find something similar, but I'm not sure how to use it. What about the "headers.add" sentences? What are APIAppId, token... values? And API-Key? I don't have nothing...
View ArticleForum Post: RE: Problem sending JSON to a REST api
Seems that the problem is solved, using this code: HttpWebRequest := HttpWebRequest.Create('eshop.xxxx-eu.com/.../rest'); HttpWebRequest.Method := 'POST';...
View ArticleForum Post: RE: How to attach/upload files to Dynamics NAV System
Hello Alexander Drogin , I found a solution from Dynamics 365 Business Central and it is working, like pure honey, just as I wanted it to work.
View ArticleForum Post: RE: Table with Sales Order Production Order Link for Reporting
So this method, combined with the reservation entries, did result in getting 99% of all the production order - sales order links. The only errors were from production orders that were started (costs...
View ArticleForum Post: RE: How to upload excel upload to whse.physical inventory journal
Never share emails directly in posts, every thing you post here is public. It will with guarantee means it ends on spam lists, plus make DUG an interesting target for harvesting. I have removed the...
View ArticleForum Post: RE: How to attach/upload files to Dynamics NAV System
Alexander's suggestion was a solution from Dynamics NAV and Business Central. Which other solution did you choose?
View ArticleForum Post: RE: Table with Sales Order Production Order Link for Reporting
And wh does the "reservation entry" method not help in this case? As long as the sales order exists, it will be linked to the production order, or an item ledger entry posted from this production. I...
View ArticleForum Post: RE: Create a Freight Calculator Page in AL - Dynamics 365...
Me again! I got my 2 drop downs working great. They both get their data from the same table which stores Provinces and Cities. On the windows Client, when I type in the Province Field, the displayed...
View ArticleForum Post: Writing to the Debug Console - AL Developement
Is there a way to write to the debug console? In C# you just write DEBUG.WriteLine() and you can write any data to the console which is super helpful when troubleshooting or debugging. Thanks Yann
View ArticleForum Post: RE: Convert Text value from Unicode (NAV 2018) to ANSI (NAV 2009...
Hi RedFox, I have looked at your question several times, since you asked it 3 days a go. Waiting for somebody else to answer it, because I personally did not understand it. But since nobody else seems...
View ArticleForum Post: RE: Convert Text value from Unicode (NAV 2018) to ANSI (NAV 2009...
And moved from User Forum to Technical Forum.
View ArticleForum Post: RE: Writing to the Debug Console - AL Developement
Hi Yann, Not quite sure exactly what it is that you want to do. What is it exactly that you want to write to the debugger and when? Personally I'm not aware of any way this could be done if inside the...
View ArticleForum Post: AL0296: The type or method 'Initialize' cannot be used for...
Hello Everyone I am getting below error when I am compiling the code in VS code editor AL0296: The type or method 'Initialize' cannot be used for 'Extension' development. AL0296: The type or method...
View ArticleForum Post: RE: Table with Sales Order Production Order Link for Reporting
In the case of a canceled order that was already in process there is no reservation entry anymore, just like finished orders. There's no shipment either so either tie back to a sales order aren't...
View ArticleForum Post: RE: Table with Sales Order Production Order Link for Reporting
And what is a cancelled production order? Was output already posted? If the output entry was posted, reservation entries with "Tracking" status should link the item ledger entry to the sales order. And...
View ArticleForum Post: RE: Create a Freight Calculator Page in AL - Dynamics 365...
This thread is turning into a "Complete guide to Business Central UI development" :-) You can't access the related table when the reference is configured as a "TableRelation" property. It's all...
View ArticleForum Post: RE: AL0296: The type or method 'Initialize' cannot be used for...
When you create an AL extension, it is by default targeted to be deployed in the cloud. And this imposes certain limitations - you cannot use internal methods. So, you either have to change the target...
View Article