Post rule execution actions for multiple fields and string fields. #484
Unanswered
KrupaMoliya
asked this question in
Q&A
Replies: 1 comment 1 reply
-
@KrupaMoliya I have the exact same need. Did you find a way to achieve that functionality within actions? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to set/update object value OnSuccess with "OutputExpression"?
Integer field gives output by multiply, but when we use string fields it just gives true / false as a comparison result. I want to use it as assignment.
I have 2 input Objects, let's say
stud = {"ID": 1, "Name": "Student1", "status": "NEW"}
studDtl = {"ID": 0, "Code": ""} // With Rule Engine, I want to set ID = 1 and Code = NewAdmission
stud = {"ID": 2, "Name": "Student2", "status": "LEFT"}
studDtl = {"ID": 0, "Code": ""} // With Rule Engine, I want to set ID = 2 and Code = AlumniStudent
I want to add Rule for different status of stud object and want to update Code in studDtl object.
Beta Was this translation helpful? Give feedback.
All reactions