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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
saved search and c#
i am new to netsuite and i am trying to create a search, which i did , an item saved search, nothing special, got 4 colunms,
internal id,
name,
description,
type,
base price ,
formula (text) as sku
i am using an itemsearchadvanced in c# but i am only getting back type and description..
here is the webservice
https://webservices.netsuite.com/wsdl/v2011_2_0/netsuite.wsdl
and here s the c# code... i am going nuts.... trying to see why not all the colunms are populated....
public List<Item> SearchItem(string searchId)
{
List<Item> item = new List<Item>();
0