jen
09/10/2020, 4:55 PMWHERE ', ' || BUILTIN.DF(item.custitem_subclassification) || ',' LIKE '%, <name_of_my_subclassification>,%'
tdietrich
09/10/2020, 7:12 PMSELECT
Item.ID,
Item.custitem_ms_test,
Customer.CompanyName
FROM
Item
INNER JOIN MAP_Item_CustItem_MS_Test AS Map1 ON
( Map1.MapOne = Item.ID )
INNER JOIN Customer ON
( Customer.ID = Map1.MapTwo )
WHERE
Item.ID = 18
-- AND Map1.MapTwo = 2615
Does that help?tdietrich
09/10/2020, 7:14 PMjen
09/10/2020, 7:21 PMjen
09/10/2020, 7:25 PMjen
09/10/2020, 7:26 PMjen
09/10/2020, 7:26 PMtdietrich
09/10/2020, 7:26 PMtdietrich
09/10/2020, 7:27 PMtdietrich
09/10/2020, 7:53 PMSELECT
Item.ID AS ItemID,
Item.FullName,
Item.Description,
SubClass.Name AS SubClassName
FROM
Item
INNER JOIN MAP_item_custitem_subclassification AS Map1 ON
( Map1.MapOne = Item.ID )
INNER JOIN CustomList_Item_Subclassification AS SubClass ON
( SubClass.ID = Map1.MapTwo )
WHERE
Item.Parent = 4152
jen
09/10/2020, 9:07 PMjen
09/10/2020, 9:07 PM