My Stuff
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…