Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
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)