Hi
i am getting the following error set up of Ledger account for Inventory receipt is not Specified update has been cancelled when i am trying to post in job order to warehouse receipt.
I tried importing data in item group from the existing company which is working fine.
I am using Ax2009. the below is the code just i want to know the exact master table name for the above set up.
void post()
{
;
ttsbegin;
this.createWRTable(g_wrDate,g_commercedate);
if (!g_WRTable)
throw error(strfmt("Record of %1 create failed",tableId2Name(g_wrtable.TableId)));
g_WRTable.selectForUpdate(true);
this.createMovementJournal();
if (!g_inventJournalId)
throw error(strfmt("Record of %1 create failed",tableId2Name(tablenum(InventJournalTable))));
axpJobOrderClass::updateBatchTable(g_wrTable);
this.WarrantIssue();
g_WRTable.axpOrderTableMap::updateTransStatus();
g_WRTable.update();
if(this.parmPrintReport())
{
this.printJournal();
}
ttscommit;
}
Thanks
regards
chan
*This post is locked for comments