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.
Need search formula to report quantity sold by date range
I am trying to create a search that reports on sales quantities that were billed / shipped between date ranges: previous 1 week, 1 months & same date ranges previous year etc.
Criteria:
(sales orders billed, or
invoices paid)
company department
Report:
item name
item description
sum of quantities billed/shipped by period set in formula
I need quite specific instructions on the basic search formula as this SQL exceeds my knowledge - I can adapt once I have a working formula.
From a previous thread the following I am trying to adapt ... and am failing:
case when {transaction.type} = 'Cash Sale' and {transaction.location} = {inventorylocation} and ({today} - {transaction.trandate}) BETWEEN 1 AND 7 then decode({transaction.type}, 'Cash Sale' , nvl(-{transaction.quantity},'0'),0) else 0 end