Hello,
I can't find the correct expression to recover triggers fired in phase 1 and phase 2 in the following use case :

Here is our trigger for an incident:
I tried to give to this trigger the following recovery expression (unsuccesfully):
I tried ITEM.VALUE, ITEM.VALUE1, ITEM.LASTVALUE, ITEM.LASTVALUE1... But It seems that I can't use these macros in the recovery expression, I must miss something.
When I put a string in it, it works, ex:
So, how could we recover Triggers fired in phase 1 and 2 with Item values collected in phase 3 and 4 in another item ?
I would really appreciated if you had any clue to resolve this use case...
I can't find the correct expression to recover triggers fired in phase 1 and phase 2 in the following use case :
Here is our trigger for an incident:
Code:
{[ITEM 1].strlen()}>1 and {[ITEM 1].nodata(1s)}=0
Code:
{[ITEM 2].nodata(1s)}=0 and {[ITEM 2].str({ITEM.VALUE)}=1
When I put a string in it, it works, ex:
Code:
{[ITEM 2].nodata(1s)}=0 and {[ITEM 2]. str("ALPHA")}=1
I would really appreciated if you had any clue to resolve this use case...

Comment