Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Creating Task - Script
Hi,
I am trying to run a script after an invoice is created that, based on a field be ing checked or not, creates a task due in 30 days..... However I keep getting this error:
Error: INVALID_REF_KEY
Invalid reference key [null].
Stack Trace....
Any help would be greatly appreciated... I'm not sure what's going on...
function FollowUp()
{
if (nlapiGetFieldValue('custbody_check_box') == 'F')
{
var dDate = nlapiGetFieldValue('startdate') + 30;
var sRep = nlapiGetFieldValue('salesrep');
var cID = nlapiGetFieldValue('entity');
var tID = nlapiGetFieldValue('tranid');
var recordCreated = nlapiCreateRecord('task');
recordCreated.setFieldValue('title', 'Follow-up Required' );
recordCreated.setFieldValue('assigned', sRep);
recordCreated.setFieldValue('company', cID);
recordCreated.setFieldValue('duedate', dDate);