Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
member item save search with advance bill of materials to find quantity on assembly
Hi.
A little month ago we enable Advanced BOM. We had some save searches that looks for the components {memberitem.name} and provide the {memberitem.locationquantityavailable}
Example:
Formula(text); Group
This formula will show the list of item(s) in a column.
CASE
WHEN {name} LIKE 'name of the item%' THEN SUBSTR({name},0,8) ELSE 0
END
Formula(text); Minimum
This formula will look for the name of item(s) and compare if they contain a component with 1111 then provide the memberitem.locationquantityavaiable.
CASE
WHEN ({name} LIKE 'name of the item%' AND {memberitem.name} LIKE '1111%') THEN (CASE WHEN TO_CHAR({memberitem.locationquantityavailable},'999') IS NULL THEN '0' ELSE TO_CHAR({memberitem.locationquantityavailable},'999') END)