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 Items per vendor
I am working on the code that needs to search the items of a certain vendor. I think I have covered all the aspects I need to set the search criteria in my code (no compiling errors). But it did not return any item. Anybody dealt with SearchMultiSelectField object?
My code:
Dim item_search As New ItemSearch
Dim item_search_basic As New ItemSearchBasic
Dim type() As String : ReDim type(10)
type(0) = "_description"
type(1) = "_discount"
type(2) = "_inventoryItem"
type(3) = "_itemGroup"
type(4) = "_markup"
type(5) = "_nonInventoryItem"
type(6) = "_otherCharge"
type(7) = "_payment"
type(8) = "_service"
type(9) = "_subtotal"
Dim searchType As New SearchEnumMultiSelectField
With searchType
.operator = SearchMultiSelectFieldOperator.anyOf