str itemtDecription; while select inventTable where inventTable.itemid == _ERAWriteOffRuleVersion.ItemRelation notexists join ERAWriteOffCalculationTmp where inventTable.ItemId == ERAWriteOffCalculationTmp.itemid { itemtdecription = inventTable.itemName(); }
Category: Items
AX – D365FO – How to create an Item/Product and release in specific company using X++ code
In one of my implementation I had requirement in this I had to create an Item in Ax using x++ code. Below code explains how we can create item in AX 2012 in a specific company. //Creation of Product and release static void ProductsXppImport(Args _args) { #define.ProductNum() #define.SearchName() #define.StorageDim() #define.TrackingDim() #define.ItemId() #define.NameAlias() #define.ModelGroup() #define.ItemGroup() EcoResDistinctProduct … Continue reading AX – D365FO – How to create an Item/Product and release in specific company using X++ code