Is there MEL or data symbols out there to display care alerts in letters etc.? I have searched a bit but haven't had any luck.
Here is a history view I have for tracking where flags go, you should be able to modify this to get what you need.
{FMT("ALERTS AND FLAGS","B,2")}
{fn Alert_Hx_View(){
local tsize = ""
local table = ""
local tarray = ""
local rtnflag = ""
local urgflag = ""
local temp = ""
tsize = GETROWCOUNT("_MELFlags")
for i = 0, i < tsize, i=i+1 do
/*Priority 1 = Normal, 2 = Important, 3 = Urgent*/
/*Status 0 = Unviewed, 1 = Viewed, 2 = On hold;saved*/
table = GETROW("_MELFlags",i,"Priority","Subject","Message","FlagType","Sent","Due","FromRealName","ToRealName","Deleted_Date")
temp = (if table[1] == "1" then "Normal" else if table[1] == "2" then "Important" else "Urgent" endif endif) +
" (" + table[5] + ") " + hret + "\t" + replacestr(table[3],hret,hret + "\t") + hret + (if table[8] <> "" then "\tLocation: " + table[8] + hret else "\tAttached to Chart" + hret endif) +
(if table[9] <> "" then "\tRemoved on " + table[9] else "\tActive Flag" endif) + hret
/*Place Urgent flags at the top*/
if (table[1] <> 3) then
rtnflag = temp + hret + rtnflag
else
urgflag = temp + hret + urgflag
endif
endfor
rtnflag = urgflag + rtnflag
rtnflag = (if rtnflag == "" then "<None>" else rtnflag endif)
return rtnflag
}}{Alert_Hx_View()}
Thank you, I will give this a try.