Hi, Everyone.
Newbie here. Can someone pls help me how to add the Shipment Ref # on my Invoice Summary pls.
Thank you,
Jay
Hi, Everyone.
Newbie here. Can someone pls help me how to add the Shipment Ref # on my Invoice Summary pls.
Thank you,
Jay
Hi
Hi
Thank you,
Jay
Since you want to display Shipment Nbr Invoices screen, please extend the DAC of ARInvoice and add a new field.
Then extend SOInvoiceEntry graph to have a logic to bring the Shipment Nbrs to display the header section.
Thank you,
Jay
It will be bit different.. below is the simple logic.
In the ARTran table anyways you have the “Shipment Nbr”, so just loop through the grid records and populate the values in the header section.
string shipmentnbrs = string.Empty;
foreach (ARTran ObjTran in Base.Transactions.Select())
{
if (ObjTran != null)
{
shipmentnbrs += ObjTran.SOShipmentNbr + ", ";
}
}
// add this Shipmentnbrs values to the extended ARInvoice DAC field
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.