by paulmac1968 » Tue Aug 14, 2012 6:53 pm
That's not exactly what my issue is. Let me be more precise. I have a program that executes in a CICS region. When this program is called, unique transaction information is passed into it via LINKAGE. This unique information is then compared to information on a rules-based database. These rules are static. What I would like to do is cache the results of the call to the rules database so I won't have to go to the database for every transaction. In Java this is done using static beans and attributes. Only when the JVM is refreshed would a hit to the database be needed. DFHCOMMAREA isn't a solution since that holds information unique to a specific termid/transaction. Plus, the program I'm talking about is not CICS precompiled. It's accessed through a CALL. Not an EXEC CICS command.