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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Don't miss out on our Question of the Week! You only have until tomorrow, February 26, 2026, 3PM ET to comment your answers and earn rewards! Click here for more details.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
No Limits. Just possibilities.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Try Intelligent Payment Automation – Fee Free For Your First Month
Intelligent Payment Automation, powered by BILL (aka Bill.com), lets you automate payments, manage vendor details, and bank account information within NetSuite.
The SuiteApp is available to organizations based in the U.S. with a valid U.S. address, or to global customers (except Canada, China, and Japan) with U.S. business subsidiaries. It only supports payments to vendors operating in the United States.
For more information, visit this thread.
Intelligent Payment Automation, powered by BILL (aka Bill.com), lets you automate payments, manage vendor details, and bank account information within NetSuite.
The SuiteApp is available to organizations based in the U.S. with a valid U.S. address, or to global customers (except Canada, China, and Japan) with U.S. business subsidiaries. It only supports payments to vendors operating in the United States.
For more information, visit this thread.
Community Articles: What Topic Should We Cover Next? Your idea could be our next feature—drop your suggestion now and spark the next big discussion!
Assign timebill to a project task
Using advanced project and trying to assign timebill record to a project task using server side after submit. The task status is "in progress" and my timebill record is good but I get "invalid casetaskevent reference for customer" error.
The ids appear valid. Below I copy fields from and existing timebill entered thru UI but get same result when adding new record. Look like a bug and I am hoping for a workaround suggestion.
Ultimately I am trying to effect the overall project end date calculated thru sequence of required tasks.
function testOnAfterSubmitRecord(type) { var r = nlapiLoadRecord('timebill','536'); nlapiSubmitRecord(r); // <-- this works, can load and save var nr = nlapiCreateRecord('timebill'); nr.setFieldValue('casetaskevent',r.getFieldValue('casetaskevent')); nr.setFieldValue('customer',r.getFieldValue('customer')); nr.setFieldValue('employee',r.getFieldValue('employee')); nr.setFieldValue('hours',r.getFieldValue('hours')); nr.setFieldValue('isbillable',r.getFieldValue('isbillable')); nr.setFieldValue('serviceitem',r.getFieldValue('serviceitem')); nr.setFieldValue('item',r.getFieldValue('item')); nr.setFieldValue('location',r.getFieldValue('location')); nr.setFieldValue('trandate',r.getFieldValue('trandate')); // stuff added to no good effect nr.setFieldValue('isadvancedjob',r.getFieldValue('isadvancedjob')); nr.setFieldValue('isexempt',r.getFieldValue('isexempt')); nr.setFieldValue('isproductive',r.getFieldValue('isproductive')); nr.setFieldValue('isutilized',r.getFieldValue('isutilized')); nr.setFieldValue('overriderate',r.getFieldValue('overriderate')); nr.setFieldValue('projecttaskassignment',r.getFieldValue('projecttaskassignment')); nr.setFieldValue('subsidiary',r.getFieldValue('subsidiary')); nr.setFieldValue('customersub',r.getFieldValue('customersub')); nr.setFieldValue('employeesub',r.getFieldValue('employeesub')); nr.setFieldValue('customform',r.getFieldValue('customform')); nr.setFieldValue('istimebillablebydefault',r.getFieldValue('istimebillablebydefault')); nr.setFieldValue('origcustomer',r.getFieldValue('origcustomer')); nr.setFieldValue('type',r.getFieldValue('type')); nlapiSubmitRecord(nr); // <-- this fails, complains casetaskevent invalid for customer } 0