Posts

Showing posts from January, 2021

Force synchronization in Microsoft Dynamics AX 2012 using X++

    Dictionary              dictionary;     int                     iLoop;       int                     totalTablesCount;     TableId                 tableId;     Application             application;     SysOperationProgress    progress;     StackBase               errorStackBase;     ErrorTxt                error;     ;     application         = new Application();     dictionary          = new Dictionary();     totalTablesCount    = dictionary.tableCnt();          ...

How can download attachment file in Microsoft Dynamics AX using DocumentHandlingService and C#(API)?

         public FileResult fileDownload(long  docRefRecId,string fileName)         {                        byte[]                                                    fileByte;             CallContext                                      context = new CallContext();             DocumentHandlingServiceClient  client    = new DocumentHandlingServiceClient();             DocumentFileDataContract           contract;               client.ClientCredentials.Windows.ClientCredential.D...