Hi All,
I have created three new fields in Item Ledger Entry and Value Entry and i want to post the value in ILE and VE when I Post the Sales Invoices.
Regards
Hi All,
I have created three new fields in Item Ledger Entry and Value Entry and i want to post the value in ILE and VE when I Post the Sales Invoices.
Regards
Check InitValueEntry and InitItemLedgEntry functions in CU 22
I have created a rec variable of SalesHeader in CU 22 and the written a code like
ItemLedgerEntry.“Field 1” := SalesHeader.“Field 1”;
but still not posting the value in Item ledger entry…
any idea!!
written the above code in function InitItemLedgEntry
Your value is alteady in ItemJnlLine
use
ItemLedgerEntry.“Field 1” := “Field 1”;
=D> Thanks!!! It is done…
[:D] Thanks!!! It is done…
Welcome [:)]