Create the status.

0
Hello Everyone,   How to create status of ticket like, In data view if they click the new edit, the status would be 'open', then  they fill half of the box, it should show 'In progress' and they completed it will show  'closed'. Note: After filling all the columns only it is showing closed. How I will create this.   Please anyone give some ideas.
asked
2 answers
1

Hi Swetha,

 

Try Explore Progress Bar

image.png

 

Hope it Helps!

Thanks & Regards,

Manikandan K

answered
0

What you could do is set up a save microflow that validates per field if it is filled in. Similar to the validation from the Rapid Course, but in stead of feedback and setting a boolean, you could use a counter. If the number of filled in attributes is 0 then you can have the status (enum) set to New. If filled in < total, then In Progress, if filled in = total, the Completed.

If you cannot work with a fixed amount of attributes (to know the total), you can look at this post on how to use MxModel Reflection or a a java action.

answered