Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm in a situation where it would be beneficial to save/access/alter a single variable between different Jobs. Looking at the documentation, I thought globalMap would be the solution. However, if I set a variable in Job 'A' and try to retrieve it in Job 'B' it is empty. No errors or otherwise. It's just empty.
In Job 'A' I set the variable in a tJavaRow using:
globalMap.put("Default_Group", 1234);
In Job 'B' I try to retrieve the variable in a tMap using:
(Integer)globalMap.get("Default_Group")
Using globalMap.get in Job 'A' works perfectly. I just can't retrieve the variable in Job 'B'. I'm hoping someone can tell me what I'm doing wrong... or if there is a better solution. Thanks in advance!
rhall_2.0 wrote:
How are your job A and B related?