Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
DELETED
Hi
Not quite spot on. Please change your condition in your RunIf trigger from
((Boolean)globalMap.get("tFileExist_2"))
to
((Boolean)globalMap.get("tFileExist_2_EXISTS"))
This should solve your problem. The job complains with a NullPointerException because there is no global variable named "tFileExist_2".
Can you confirm if the file is being generated as a part of the tFileOutputExcel component?
And can you also add the !((Boolean)globalMap.get("tFileExist_2")) on another run-if condition and see where the flow is going?
Thanks
One small note, this design is replicated in the job. Once for two different tables in my data warehouse.
DELETED
Hi
Not quite spot on. Please change your condition in your RunIf trigger from
((Boolean)globalMap.get("tFileExist_2"))
to
((Boolean)globalMap.get("tFileExist_2_EXISTS"))
This should solve your problem. The job complains with a NullPointerException because there is no global variable named "tFileExist_2".
Oh my god, I can't believe I missed that...thanks!