Hi All,
I have successfully linked sales order to unposted inventory pick using below code:
action(UnpostedInvPick)
{
ApplicationArea = Warehouse;
RunObject = Page "Inventory Pick";
RunPageLink = "Source Document" = CONST("Sales Order"),
"Source No." = FIELD("No.");
RunPageView = SORTING("Source Document", "Source No.", "Location Code");
}
However i do not know how to create a action on sales order with a link to POSTED warehouse document. Has anyone got an example of how to create an indirect link where as far as I know sales order number is not stored directly on posted warehouse document
Thanks