Journal Posting

Hi friends,

While posting the journal i need to insert the value in my table.Where should i write the code…?

Module : Ledger Journal;

Form: Journal → General Journal;

Hi saju,

You can do this in many ways.

One way is Override - Class - LedgerJournalCheckPost : Method -PostJournal

put the below code in the last - before - return allOk;

if(allOk)

{

/////Write your code for inserting into the table.

}

Thank u kranthi its working fine…