Hi Nikolaos,
I was passed Valid LedgerJournalTable to the class below the code:
public Common currentRecord(Common _ledgerJournalTable = ledgerJournalTable)
{
if (!prmisdefault(_ledgerJournalTable))
{
super(_ledgerJournalTable);
ledgerJournalTable = _ledgerJournalTable as LedgerJournalTable;
}
else
{
super();
}
return ledgerJournalTable;
}
Below the super():
public Common currentRecord(Common _common = null)
{
if (!prmisDefault(_common))
{
currentRecordIsSet = true;
}
return _common;
}
below the LedgerJournalTable method of AXLedgerJournal Class:
public LedgerJournalTable ledgerJournalTable(LedgerJournalTable _ledgerJournalTable = ledgerJournalTable)
{
if (!prmisdefault(_ledgerJournalTable))
{
this.setCurrentRecordFromExternal(_ledgerJournalTable);
}
return this.currentRecord();
}
Can you please help to fixing the issue..