Hello all,
Hope you are all doing well.
Could you please suggest what is the suitable place using x++ to put code after any posting to the general ledger whether it was from general journal directly or from sub-ledger because i want to integrate to a service to send it every posted transaction in the same time of posting.
Actually im using extension on LedgerJournalPost class which includes a Post method
public static void post(
Common _record,
TableId _tableId,
NoYes _transferErrors,
boolean _splitLargeJournal = true,
boolean _suppressClientMessages = false,
str _callingFormName = '',
LedgerJournalEngine _ledgerJournalEngine = null,
boolean _skipIL_RU = false,
LedgerJournalCheckPostResults _results_RU = null,
boolean _progressBarHide = false)
{
LedgerJournalPost::postInternal(_record, _tableId, _transferErrors, _splitLargeJournal, _suppressClientMessages, _callingFormName, _ledgerJournalEngine, _skipIL_RU, _results_RU, _progressBarHide, false);
}
Thanks in advance :)