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!
Porlet Script Help
Hi, I am really a beginner when it comes to js. I have recently tried to alter one of Netsuite's example portlet scripts to do what I want. Thiers was to give a Dashboard portlet of customers with balances over $5k. I wanted to display customers with overdue balances. I have finally got it running with no errors, however there are no results. I know there should be. Here is what I have, any thoughts?:
function overdueBalance (portlet)
{
portlet.setTitle( 'Customers with Overdue Balances' );
portlet.addLine('The following Customers have Overdue Balances',null,0);
var filters = new Array();
filters[0] = new nlobjSearchFilter( 'salesrep', null, 'anyOf', 164, null );