Hi, i've created a new form nl "Packing Order"
Inside this form you can add new Packing Lines based on existing Sales Lines.
So i have the Function GetSalesOrders wich will import the desired Sales lines into the Packing Order.
Now when i run this code, i see a form with all existing sales orders.
lv_SalesHeader.RESET;
lv_SalesHeader.SETRANGE("Document Type",lv_SalesHeader."Document Type"::Order);
IF FORM.RUNMODAL(45,lv_SalesHeader) = ACTION::LookupOK THEN BEGIN
END;
But when i now select more then One sales header record, how do i know which ones were selected?
0
Answers
This function is called, for example, from OnLookup trigger of Totaling field ... form 16 "Chart of Accounts"
This Code Help me in My Developement...
Thank Again..