Pages

Banner 468 x 60px

 

Thursday, April 19, 2018

Get workflow information using x++

0 comments
Hi Guys, I share how to Get Workflow Information AX using X++ : Get workflow information using x++ : Display str ApproveDate() {     WorkflowTrackingStatusTable     workflowTrackingStatus;     WorkflowTrackingTable           workflowTrackingTable;     WorkflowTrackingCommentTable    workflowTrackingCommentTable;     UserInfo                        userInfo;     Name                   ...
Read more...

Wednesday, April 18, 2018

Rename Product Name in EcoresProductTranslation AX 2012

0 comments
Hai guys, I want to share how to Rename Product Name in EcoresProductTranslation Table AX 2012 : If you have problem, please email to me : adityomagnet@gmail.com Thanks in advan...
Read more...

throw error in x++

0 comments
throw error in x++ : public void closeOk() {     List                ordersToUpdate = new List(typeName2Type(extendedTypeStr(RecId)));     FormRun             callerForm = element.args().caller();     MultiSelectionHelper selection = MultiSelectionHelper::createFromCaller(element.args().caller());     SalesTable          salesTable = selection.getFirst();    ...
Read more...

create Purchase Requisitions using x++

0 comments
create Purchase Requisitions using x++ : void clicked() {     PurchReqTable                   purchReqTable;     PurchReqApprovalEventHandler    PurchReqApprovalEventHandler;     PurchReqLine                    purchReqLine;     // Get Procurement Category     InventTable                     _inventTable;     EcoResProduct             ...
Read more...

Convert time to GMT using x++ :

0 comments
Convert time to GMT using x++ : DateTimeUtil::date(DateTimeUtil::removeTimeZoneOffset(PurchTable.createdDateTime, TimeZone::GMTPLUS0700_BANGKOK_HANOI_JAKARTA)...
Read more...

Display item name product from product number using x++

0 comments
Display item name product from product number using x++ : display SalesLineShowItemName itemnameproduct() {     return EcoResProductTranslation::findByProductLanguage(this.inventTable().Product,"en-us").Name;...
Read more...

Monday, April 16, 2018

X++ code for check license Microsoft Dynamics AX 2012 R3

0 comments
Hi Everybody, I want to share X++ code  for check license Microsoft Dynamics AX 2012 R3 : static void ABUCheckLisense(Args _args) {     SysSecRoleEntryPointsTmp    srepTbl;     SysUserLicenseMetadataTmp   slsaTmp;     SecurityRole                securityRole;     CommaTextIo                 commaTextIo;     FileIOPermission            permission;     MenuFunction         ...
Read more...

Wednesday, February 21, 2018

RELATION BETWEEN LEDGERDIMENSION AND DIMENSIONATTRIBUTEVALUECOMBINATION AX 2012 USING SQL :

0 comments
RELATION BETWEEN LEDGERDIMENSION AND DIMENSIONATTRIBUTEVALUECOMBINATION AX 2012 USING SQL : SELECT  A.JOURNALID,C.[DESCRIPTION],               A.VOUCHER,               A.ITEMID,               A.TRANSDATE,               A.INVENTONHAND ,A.QTY,              ...
Read more...

FormCtrl using x++ :

0 comments
FormCtrl using x++ : void clicked() {     ABUTallyHeader  _abutallyheader;     ABUTallyLine    _abutallyline;     super();     while select _abutallyheader where     _abutallyheader.RefRecId == WMSOrderTrans.RecId     {         select count(RecId), sum(Qty) from _abutallyline where _abutallyline.RefRecIdRouteLine == _abutallyheader.recid;         WMSOrderTrans.qty      ...
Read more...

Creating Financial Dimension in General Journals in AX 2012 in X++

0 comments
Creating Financial Dimension in General Journals in AX 2012 in X++ : AxLedgerJournalTable header = new AxLedgerJournalTable(); AxLedgerJournalTrans trans = new AxLedgerJournalTrans(); container ledgerDimensions, offsetDimensions; header.parmJournalName("GenJrn"); header.save(); trans.parmAccountType(LedgerJournalACType::Ledger); trans.parmJournalNum(header.ledgerJournalTable().JournalNum); ledgerDimensions = ["131100-USA","131100", 1, "COUNTRY","USA"]; trans.parmLedgerDimension(AxdDimensionUtil::getLedgerAccountId(ledgerDimensions)); trans.parmAmountCurDebit(230); offsetDimensions...
Read more...

A financial dimension value is based on the record and has been used on a transaction. You cannot delete the record

  SOLUTION delete in table DimensionAttributeLevelValue base on Bank Account  :  and Delete the Bank Account FINISH