Hallo my name is Razqa,
I am newbie in Microsoft Dynamic AX R3 2012.
I have a problem, i want watching product and product categories in 1 lines. In setting AX i have 2 category hierachy and 1 category hieracrhy have 1 categories.
This is my coding...
static void rlpTest(Args _args)
{
InventTable inventTable;
EcoResProduct product;
EcoResProductCategory productCategory;
EcoResCategory category, categoryPenjualan, categoryPembelian;
EcoResCategoryHierarchy hierarchy, hierarchyPembelian, hierarchyPenjualan;
while select inventTable where inventTable.ItemId =="910130001426"
join product where inventTable.Product == product.RecId
join productCategory where productCategory.Product == product.RecId
join category where productCategory.Category == category.RecId
join hierarchy where productCategory.CategoryHierarchy == hierarchy.RecId
{
info (strFmt("%1 %2 %3", inventTable.ItemId, hierarchypembelian.Name, category.Name));
}
}
And this my report still in 2 line. I want to create in 1 line.