Requirement: Is it possible to access the value of field 'description' of a process flow in a custom plugin of same process flow?
Solution: Yes, you can fetch the Process flow description, by using the following script in the custom plugin:-
import com.adeptia.indigo.transaction.IndigoTransaction;
String Description = ((IndigoTransaction)service.getTransaction()).getDescription();
context.put("ProcessFlowDescription", Description);
Comments
0 comments
Please sign in to leave a comment.