megaphone
Update your Profile with your Support type to get your Support Type badge.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Stay in the know of how NetSuite can help grow your business with our guides, webinars, and events. Subscribe Here
What Topic Should We Cover Next? Your idea could be our next feature—drop your suggestion now!
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. Discover what's next at SuiteConnect Tour 2026.
Try Intelligent Payment Automation – Fee Free For Your First Month For more information, visit this thread.
Don't miss out on our Pop Quizzes! #1 | #2 | #3 | #4 | #5 You only have until tomorrow, March 20, 2026, 1:00PM ET to comment your answers.

My Stuff

Please note that on Friday, March 20, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.

Mr Rob Green Ribbon

Comments

  • Hey Paul, I don't think the PO keeps a "created by" field. One way you could get around this pretty easily would be to add a custom "Created By" Transaction Body field that defaults to the current user. Then you could use that in your advanced PDF printout. Robbie
  • Hello, You would need set your workflow summary type to trigger "On Create" in addition to "On Update". That way it starts running as soon as you create the PO, as opposed to the first time you "Edit" it afterwards. Good luck Robbie
  • Hey Mel, Not sure about the workflow approach, but you could do that in a pretty simple SuiteScript function. Something like this: var initialTotal = nlapiGetFieldValue('total'); function onSave() { var currentTotal = nlapiGetFieldValue('total'); var authCode = nlapiGetFieldValue('authcode'); var response = true; if…
  • Hey Rodo, What trigger type do you have set on your opportunity workflow? Try "After Record Submit" if that's not what it's already set to. Send me a private message if you'd like any further help on this. Good luck! Robbie
  • Sometimes its hard to figure out what's going on behind a workflow. Hopefully you're attending NetSuite's free webinar on workflows next Wednesday? Have you checked the Workflow log on the item fulfillments that are getting created to see if they're going through your states correctly? A better alternative to a workflow…