How can we arrange filter value in order in Button Dropdown using load entries? Options under button dropdown should be of order.
- Committed Case
- Violated Case
- Others
But the 'Others' option is listed 2nd as per alphabetical order.
Code:
CASE WHEN
PU_COUNT ("A", "B"."caseid" ) > 0
THEN 'Committed Case'
WHEN
PU_COUNT ("A", "C"."_CASE_KEY", "C"."CHANGED_TO" IN ('In Progress') AND "C"."CHANGED_FROM" NOT IN ('New')) > 0
THEN 'Violated Case'
ELSE
'Others'
END
Other than rephrasing the options and numbering the options, is there any default logic to order the options as we like.