Skip to main content

Posts

Showing posts with the label Budget Register line In Ax 2012

Import Budget Register line In Ax 2012

To Import Budget Register line In Ax 2012, you get Idea from below code. You need to create budget register header then you can your CSV file and apply the code to import. you also need to declare variables as used in below code. budgetTransactionLine = new AxBudgetTransactionLine(); budgetTransactionLine.parmBudgetTransactionHeader(BudgetTransactionHeader::findByTransactionNumber(c1,Ledger::current()).RecId); budgetTransactionLine.parmDate(str2Date(c2,123)); budgetTransactionLine.parmTransactionCurrency(c10); budgetTransactionLine.parmBudgetType(str2enum(budgetType,c11)); budgetTransactionLine.parmTransactionCurrencyAmount(str2num(c9)); budgetTransactionLine.parmAccountingCurrencyAmount(str2num(c9)); accEntryPattern = [strFmt("%1-%2-%3-%4-%5-%6-%7",c3,c4,c5,c6,c7,c8),c3]; if(c4) { accEntryPattern += "LegalEntity";