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!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
After Field Edit date calculation workflow
Hi, I'm working on a workflow that would calculate Expected Receipt Date as Ship Date (custom line field) + 14 days. I created a single state workflow with After Field Edit triggered action using a formula to establish the value. If I simply put {line.custcol_line_shipdate} in the formula field, the value is being copied 1:1 as soon as enter the date - perfect. However, I can't seem to get any calculations working. So far I tried the following:
{line.custcol_line_shipdate} + 14
{line.custcol_line_shipdate} + INTERVAL '14' DAY
to_date({line.custcol_line_shipdate} + INTERVAL '14' DAY)
0