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!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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)