Discussions

Check out Oracle NetSuite upcoming events and conferences here
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.
Don't miss out on our Pop Quiz You only have until September 13, 2024, 3 PM ET to comment your answers and earn rewards! Click here for more details.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Get ready to take on exciting new challenges and become the next SuiteMaster of the Month!
Join the largest gathering of the NetSuite Community at SuiteWorld in Las Vegas, September 9-12! Discover cutting-edge innovations, attend insightful sessions, network with industry leaders, and elevate your business to new heights. Register here!

Searching for Purchase Orders Pending Receipt

edited Jan 8, 2020 2:25AM in SuiteCloud / Customization 10 comments

I am trying to write a server side script that will search for all Purchase Orders that are Pending Receipt. Any idea what is wrong with the code below. It doesn't return any results.

function po_pending_receipt()
{
nlapiSetPortletTitle( 'Purchase Orders Pending Receipt' );
nlapiWritePortletLine('',null,0);

var columns = new Array();
columns[0] = new nlobjSearchColumn( 'tranid' );
columns[1] = new nlobjSearchColumn( 'status' );
var filters = new Array();
filters[0] = new nlobjSearchFilter( 'entity', null, 'equalTo', 298, null);
filters[1] = new nlobjSearchFilter( 'status', null, 'equalTo', 'Pending Receipt', null);
var searchresults = nlapiSearchRecord( 'purchaseorder', null, filters, columns);
for ( var i = 0; searchresults != null && i < searchresults.length ; i++ )
{
  var poRecord = nlapiLoadRecord(searchresults[i].getRecordType(),searchresults[i].getID() );

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!

Leaderboard

Community Whiz

Quarter 3 (Jul-Sep 2024)

This Week's Leaders

This Month's Leaders

All Time Leaders