Never-ever create a simple string Password field in D365 because someone can steal it by SQL DB. I know somewhere there is some information about…
Refresh a DataSource is a very common task to Dynamics AX developers, as you’ll most likely perform changes on a record and have to present…
Generate post sales order confirmation from X++ SalesTable salesTable = SalesTable::find(“000747”);SalesFormLetter salesFormLetter; salesFormLetter = SalesFormLetter::construct(DocumentStatus::Confirmation);salesFormLetter.update(salesTable, systemDateGet(), SalesUpdate::All);
static void PO_CancelReminder(Args _args) { PurchLine _PurchLine; Qty _qty; PurchId _PurchId; Dialog dialog; Filename filenameWarehouse,filenameItem; DialogField dialogFilename; container conFilter = [“Comma Seperated Value .txt “, “*.csv”]; FilenameOpen filename; Container record; #File IO iO; boolean first = true; dialog = new dialog(); dialog.caption(“Select…
in addition to parameters specified in data contracts, reports can also use queries. It’s very handy, because users can specify filters and sorting in exactly…
Get User from Worker in X++
Have you heard of System.Text.StringBuilder? It is a .NET class which specializes in faster string manipulation. Can we use it in X++? Is it faster? How…
1) Create a AOT Query Object as your requirement. 2) Create a Job and paste the below code to check the Query Object. static void…