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.
Search Billed Sales Orders
I'm doing a search for billed sales order. I know there are at least 1,700 of them in the system. This very simple code below is returning 0 entries.
The problem appears to be with the status I am setting. Am I not setting in correctly? Should I be identifying billed SOs differently?
Const strTranType As String = "salesOrder"
smsf.operator = netsuite.webservices.SearchEnumMultiSelectFieldOperator.anyOf
smsf.operatorSpecified = True
strTypeArray(0) = strTranType
smsf.searchValue = strTypeArray
tsb.type = smsf
'status
Dim smsf3 As New netsuite.webservices.SearchEnumMultiSelectField, strStatusArray(1) As String
smsf3.operator = netsuite.webservices.SearchEnumMultiSelectFieldOperator.anyOf
smsf3.operatorSpecified = True
strStatusArray(0) = "billed"
smsf3.searchValue = strStatusArray
tsb.status = smsf3