After writing your COBOL program with CICS. The next point is compiling the program. If we want a load module, you need to first translate and then compile it with the COBOL compiler.
In the COBOL program, before identification division the following compiler options you can mention.
COBOL compiler options
CBL(DYNAM, RENT)
CICS translate commands
PROCESS XOPTS(CICS,NOLINKAGE)
CBL(DYNAM,RENT) Identification Division. . .
With the above options, your program will compile successfully and a load module will be created.
Related