Skip to main content

Posts

Showing posts with the label Sales order tax

GST/TAX at sales order and sales line level through X++

Sales order GST : Total GST of Sales order can be seen from following screen in AX 2012 X++ code to achieve this; static   void  SalesTax_Per_SalesOrder(Args _args) {     TaxTmpWorkTransForm     taxTmpWorkTransForm;     SalesTotals             salesTotals;     TaxSales                taxSales;     SalesLine               salesLine;      container                cont;     salesTotals = SalesTotals::construct(SalesTable::find( "SAOR000770" ));     salesTotals.calc();     cont...