*** WF newbie warning
I am trying to create a report that takes in primary assignment status into valueexpression.
It works as "valuefield=primaryAssignment:status", it doesn't work as "valueexpression={primaryAssignment}.{status}" - gets me blanks.
I don't why. Documentation on text mode reporting is very limited and I couldn't find any relevant examples or discussions.
I was trying to produce a custom status string for a task, based on values of task status (TS=NEW,INP,CPL) and primary assignment status (PA=AA,AD,DN).
Pseudo code:
If TS="New" and PA="Requested" --> CustomStatus="Submitted"
If TS="New" and PA="Working" --> CustomStatus="Reviewed/Waiting"
If TS="In Progress" and PA="Working" --> CustomStatus="Started"
If TS="Complete" and PA="Done" --> CustomStatus="Completed"
My plan was to concatenate {status} and {primaryAssignment}.{status} and use IF to produce a human friendly string.
If anyone can point me to how to make the {primaryAssignment}.{status} work, or why it doesn't work, I would appreciate.
Also, alternatives to produce custom status string based on task status and assignment status.
Thank you,
John