Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
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)