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...

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