Alarm notice - Modify displayed data

Hi All,

I am trying to modify the Alarm popup message to display the follow-up text as well the subject. (Default shows only the subject)

My current code is as follows. (This code is in the description column in ($Alarms) folder.


FollowUpTxt := "Follow Up for: ";

Context:= " Mail Subject: ";

xxLocation := @If(@Length(Room); @Name([CN];@Subset(Room;1)); @Length(Location);Location; “”);

@If(@Length($AlarmDescription); @Trim($AlarmDescription:xxLocation);

@IsAvailable(FollowUpStatus); FollowUpTxt + @Trim(FollowUpText) + Context + @Trim(Subject);

@Trim(Subject:xxLocation))


The result is as follows:

Follow up for: [My follow up text here] {some blank spaces that I have inserted in the code, does not display here} Mail Subject: [The email subject here]

What I am trying to acheive is as follows:

Follow up for: [My follow up text here]

(one blank line)

Mail Subject: [The email subject here]

Issue: I am unable to insert the carriage return in this code. I have tried @NewLine and @Char(13)…but it does not seem to work.

I am not a programmer, just tinkering around.

Could someone, please paste the correct code so that I can get the Alarm popup to show the way I want to see it.

Thanks a ton.

Subject: Alarm notice - Modify displayed data

Can anybody help?? Please?