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.
create a phonecall with custom filed
I tried to create a phonecall with custom filed in java using netsuite web service 2013_2 version. But it’s throwing error while inserting record. what mistake I did. Below is my code
PhoneCall phoneCall = new PhoneCall();
List<CustomFieldRef> oCustomFieldRefList = new ArrayList<CustomFieldRef>();
StringCustomFieldRef strCF = new StringCustomFieldRef();
strCF.setScriptId("custeventcustomcallattempt");
strCF.setValue("234");
oCustomFieldRefList.add(strCF);
phoneCall.setCustomFieldList((CustomFieldRef[])
oCustomFieldRefList.toArray());
RecordRef[] recordRefList = new RecordRef[]{new RecordRef("1",recordID,"",RecordType.customer)};
phoneCall.setStatus(PhoneCallStatus._scheduled);
//phoneCall.setOwner(recordRefList[0]);
phoneCall.setMessage("Test-CustomFiledTest1");
phoneCall.setTitle("Test-CustomFiledTest1");
WriteResponse response = null;
response = _port.add(phoneCall);
System.out.println(response.getStatus()[0].getMessage());