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.
Am I doing something wrong?
I have a customfieldlist in an invoice. I have retrieved the internalid of the Customfield and I want to get the value represented by the internalId. I've shown a snippet of my code below that gets the value I want, but it goes from 1 minute to 8 minutes processing time by adding the ReadResponse section. Am I violating some covenant here?
Thanks in advance for any help..
------------------------------------------------------------------------- Record[] records = response.recordList;
Invoice PinnInvoice;
CustomRecordRef myCRR = new CustomRecordRef();
CustomRecord CRR = new CustomRecord();
myCRR.typeId = "2";
for (int i = 0, j = (response.pageIndex - 1) * response.pageSize; i < records.Length; i++, j++)
{
PinnInvoice = (Invoice)records[i];