Hi,
What is the name of the table in AX 2012 where I can get the list of the products including Categories?
I cannot get both info in ECORESPRODUCT & ECORESPRODUCTCATEGOY
*This post is locked for comments
Hi,
What is the name of the table in AX 2012 where I can get the list of the products including Categories?
I cannot get both info in ECORESPRODUCT & ECORESPRODUCTCATEGOY
*This post is locked for comments
I used this query
SELECT DISTINCT DISPLAYPRODUCTNUMBER, SEARCHNAME, NAME
FROM ECORESPRODUCT A
INNER JOIN ECORESPRODUCTCATEGORY B
ON A.PRODUCTMASTER = B.PRODUCT
INNER JOIN ECORESCATEGORY C
ON B.CATEGORY = C.RECID
Please share the how you were able to do it.
I found the way to get my info.
Thank you
I think questioner is confuse about how to join those tables and collect information from two tables.
possibly he/she can use EcoResProductCategoryExpanded (view) of AOT
Hi,
The link between Products and Categories is stored in the table EcoResProductCategory.
The category information is available in the table EcoResCategory.
What do you mean with "cannot get both info"?
André Arnaud de Cal... 291,391 Super User 2024 Season 2
Martin Dráb 230,445 Most Valuable Professional
nmaenpaa 101,156