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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Ability to set multi field value based on Workflow Criteria
Hello everyone.
Noob here.
I was wondering if there is a way to set multiple field values based on one criteria.
Similar to this sudo code:
If (WorkflowField.strType == "Project") {
booleanFlag1=true;
booleanFlag2=false;
project.Status="Rejected";
}
Reason I ask is, Workflow I am designing is two Multi dimensional approval process. For different types of project, it has to go through two to three tier approval process.
What I noticed is that on different WF state with a given criteria, i have to set each field separately.
I thought perhaps formula can do this but based on documentation, formula is used to calculate and/or retrieve one field.
0