Merhaba arkadaşlar,
Bir kategorinin altında yer alan ürünleri göstermek için aşağıda ki kodlar işimizi görmektedir.
Ax’ta Kategoriye bağlı ürünlerin tutulduğu tablo EcoResProductCategory tablosudur.
Where şartında ki category verisi EcoResCategory.RecId dir
static void SmhEcoResProductCategory(Args _args) { InventTable inventTable; EcoResProductCategory ecoResProductCategory; while select inventTable join ecoResProductCategory where ecoResProductCategory.Product == inventTable.Product && ecoResProductCategory.Category == 1111 { info(strFmt("%1", inventTable.ItemId)); } }