Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
test
Hi All ,
We tried TransactionSearchAdvanced option that is present in 2008.2 version for our webservices but could not retreive line level details
Here is sample that we used.
TransactionSearchAdvanced tsa1 = new TransactionSearchAdvanced();
tsa1.savedSearchId = "190";[This is internal id of the view we created for Purchase Order]
cnw.search(tsa1);
response object is showing all the Transaction records that are present in the view we created ,but when we would like to view for each records item level details like line num,item name,quantiy it is displaying null and can we know how to retreive details at line level
((com.netsuite.webservices.TransactionSearchRow)(response.searchRowList[0])) is displaying all values as null.