hi, i have a case to check value from Shipment Line to Sales Order Line, my problem is how to looping that proses for every line in transaction view ? Thanks.
Solved
how to implement looping in transactions view ?
Best answer by Naveen Boga
Hi, if you want to join ShipmentLine to SOLine, please use below fields.
To loop the records in Transaction View..
foreach(SOShipLine objShipLine in Base.Transactions.Select())
{
//Write SOLine Query by providing below values, to fetch the respective line of SOShipLine
}
Please let me know if you have any queries
SOShipLine | SOLine |
OrigOrderType | OrderType |
OrigOrderNbr | OrderNbr |
OrigLineNbr | LineNbr |
InventoryID | InventoryID |
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.