Access the following URL in your D365FO environment: https://YOURDYNAMICS365URL.COM/cmp=USMF&mi=SysClassRunner&cls=Tutorial_WHSSetup Replace YOURDYNAMICS365URL.COM with your actual D365FO environment URL. Running this setup should resolve the error and allow you to complete the RAF process without issues.
To Skip the next call use try catch protected void addPurchaseLines(int _line) { try { throw Exception::Error; next addPurchaseLines(_line); } catch(Exception::Error) { // write your logic here } } if want to skip the code between ttsbegin/ ttscommit than use throw Exception::UpdateConflict; instead of throw Exception::Error; protected void addPurchaseLines(int _line) { try { throw Exception::UpdateConflict; next addPurchaseLines(_line); } catch(E xception::UpdateConflict; ) { // write your logic here } } Regards Muhammad Farraz email: farazjaved01@gmail.com
One of the most common requirements these days is to create Inventory Movement Journal through code. Mostly when the input is coming from another 3rd Party application. Here is the code show below :- InventJournalTable inventJournalTable; InventJournalTrans inventJournalTrans; InventJournalNameId inventJournalName; InventDim inventDim; JournalCheckPost journalCheckPost; // Creation of Inventory Journal Header inventJournalTable.clear(); ...
Comments
Post a Comment