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.
Searching for open bills
I've been trying to create a search using SuiteScript to find open bills for a given vendor:
var filters = [new nlobjSearchFilter('entity', null, 'is', vendor_id)];
filters.push(new nlobjSearchFilter('status', null, 'is', 'open'));
var result = nlapiSearchRecord('vendorbill', null, filters, []);
I get an error about an invalid search filter with respect to the second 'status' line, and I've tried many variation of this with no luck. Does anybody know how to query for open (i.e. unbilled) vendor bills?
Thanks