Post Po invoice In D 365 Fo using x++
Today we i will show how to post the purchase order Invoice using x++ in D365 FO /// <summary> /// This method helps to post the invoice journal journal for the purchase order. /// </summary> /// <param name = "_vendaccount">The <c>vendaccount</c> Vendor account num.</param> /// <param name = "_invoiceNum">he <c>invoiceNum</c> invoice num.</param> /// <param name = "_invoiceDate">he <c>invoiceDate</c> Invoice Date.</param> /// <returns> the parm id created after the invoice posted</returns> private parmId ngPostInvoice(VendAccount _vendaccount, IGPS_ExcelValueStr _invoiceNum, Transdate _invoiceDate) { //post invoice for all matched purchase lines PurchFormLetter_Invoice purchFormLetter; Q...