Posts

Showing posts with the label Purchase order

Create Purchase Order Line Through Code AX X++ D365 Finance & Operations

    public void createPurchLine(ItemId _ItemId, InventDimId _InventDimId, Qty _qty SalesId _salesId)     {         PurchLine                               purchLine;         InventTable                             inventTable;         InventDim                               inventDim;         InventLocation                          inventLocation;              InventItemBarcode                       inventBarCode;         PurchTable            ...