Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
SuiteWorld 2025 registration is officially OPEN
SuiteWorld is the largest annual gathering of the NetSuite community! It will be held in Las Vegas on October 6-9, 2025. Our customers and partners look forward to SuiteWorld every year as a place to hear the latest from NetSuite, get hands-on learning, and connect with each other. Register now!
SuiteWorld is the largest annual gathering of the NetSuite community! It will be held in Las Vegas on October 6-9, 2025. Our customers and partners look forward to SuiteWorld every year as a place to hear the latest from NetSuite, get hands-on learning, and connect with each other. Register now!
Starting June 1st, 2025, you may notice that our regular e-Fix releases are being referred to as ‘Minor Releases’. It’s still the same release schedule, with a different name. (Link can be found here)
Showing field text in custom portlet
Hi all
I have written a custom portlet script to give me a list of opportunities, which appears to be giving me the correct results, apart from one slight issue. For the Company and Sales Rep columns in my results, I am being presented with the internal ID rather than the entity number/customer name and the sales rep name. I need the equivalent of a nlapiGetFieldText() API but for this custom portlet.
This is my current script:
function unqtdOppPortlet(portlet, column) { portlet.setTitle("Unquoted Opportunities"); portlet.addColumn('trandate','date', 'Date', 'LEFT'); var col = portlet.addColumn('tranid','text', 'Number', 'LEFT'); col.setURL(nlapiResolveURL('RECORD','opportunity')); col.addParamToURL('id','id', true); portlet.addColumn('entity','text', 'Customer', 'LEFT'); portlet.addColumn('custbody_pqc_date','date', 'Date of Pre-quote', 'LEFT'); portlet.addColumn('expectedclosedate','date', 'Expected Close', 'LEFT'); portlet.addColumn('projectedamount','currency', 'Projected Total', 'RIGHT'); portlet.addColumn('custbody_opp_site_adress','text', 'Site Address', 'LEFT'); portlet.addColumn('salesrep','text', 'Sales Rep', 'LEFT'); var returnFilter = new Array(); returnFilter[0] = new nlobjSearchFilter('salesrep',null,'is',29918) var returncols = new Array(); returncols[0] = new nlobjSearchColumn('trandate'); returncols[1] = new nlobjSearchColumn('tranid'); returncols[2] = new nlobjSearchColumn('entity'); returncols[3] = new nlobjSearchColumn('custbody_pqc_date'); returncols[4] = new nlobjSearchColumn('expectedclosedate'); returncols[5] = new nlobjSearchColumn('projectedamount'); returncols[6] = new nlobjSearchColumn('custbody_opp_site_adress'); returncols[7] = new nlobjSearchColumn('salesrep'); var results = nlapiSearchRecord('opportunity', null, returnFilter, returncols); for ( var i
Tagged:
0