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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] Run if example in Talend ETL [How to write condition }

I am using tfileexist tool to find whether file exist or not , if exist than job should send the message saying that " File Exist " else it should through "File doesnot Exist"
0683p000009MBv5.png
Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

You just need to set the condition with the global variable which stores the return result of tFileExist,
if exists:
((Boolean)globalMap.get("tFileExist_1_EXISTS"))
if not exists:
!((Boolean)globalMap.get("tFileExist_1_EXISTS"))

View solution in original post

2 Replies
Anonymous
Not applicable
Author

You just need to set the condition with the global variable which stores the return result of tFileExist,
if exists:
((Boolean)globalMap.get("tFileExist_1_EXISTS"))
if not exists:
!((Boolean)globalMap.get("tFileExist_1_EXISTS"))
Anonymous
Not applicable
Author

My issue is resolved ... thank you shong ,,,,,,,,,,,,,,,,,many thanks