Hello,I have a tempo report with a grid that show the data of a process getting them from a datastore, in this data store there are two field (ManagerApproval and RequestStatus) of type Number Integer.Now in the report the value of this column are number and the possible values are null, 0, 1, 2I already have various constant of type document called:-ICON_GREY_GLASS, with value a .gif file-ICON_RED_ALERT, with value a .gif file-ICON_YELLOW_GLASS, with value a .gif file-ICON_GREEN_GLASS, with value a .gif fileand the following expressione rule:= if ( ri!value = "" , cons!ICON_GREY_GLASS , if ( ri!value = 0 , cons!ICON_RED_ALERT , if ( ri!value = 1 , cons!ICON_YELLOW_GLASS , cons!ICON_GREEN_GLASS ))) For portal reports we use this rule to convert the number integer to the corresponding image icon.There is a similar way to do so for Tempo reports?I've seen the a!iconIndicator function,...
OriginalPostID-203564
Discussion posts and replies are publicly visible