Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
_AnonymousUser
Specialist III
Specialist III

[resolved] Run if Trigger condition for e-mail

Hello,
In the below attached ETL screenshot, I want to send an e-mail to personnel when there is a record/ multiple records in rejected table.
In the trigger I have specified the condition as
(globalMap.get("tAS400Output_2_NB_LINE")) != null.
When I run the ETL e-mail is being sent even when there are 0 records in rejected table.
Please advice.
Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi
The global variable ((Integer)globalMap.get("tAS400Output_1_NB_LINE")) returns an int value, the expression can be (for example):
((Integer)globalMap.get("tAS400Output_1_NB_LINE"))==0
Shong

View solution in original post

3 Replies
Anonymous
Not applicable

Hi anut7,
I don't see any attached ETL screenshot, could you check it?
Best regards
Sabrina
Anonymous
Not applicable

Hi
The global variable ((Integer)globalMap.get("tAS400Output_1_NB_LINE")) returns an int value, the expression can be (for example):
((Integer)globalMap.get("tAS400Output_1_NB_LINE"))==0
Shong
_AnonymousUser
Specialist III
Specialist III
Author

Thanks Shong. It worked.