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!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Need help with getList()
OK. I promise I'm not a complete idiot (some parts are missing).
Developing my first .NET C# project with Netsuite's Webservices.
I've got my webservices client logged in and I'm attempting to execute my first getList() method.
Writing my code based on the examples in the Webservices Operations definitions, I pass the getList() method two arguments: an array of numbers as strings, and the boolean false (just like it is in the examples).
My code:
****************************
string reqKeys = "10,15";
string [] nsKeys = reqKeys.Split( new Char[] {','} );
service.getList( nsKeys , false );
****************************
I get this error:
c:\inetpub\wwwroot\NSWSClient\dev\default.aspx.cs(39): No overload for method 'getList' takes '2' arguments