Skip to main content

Problem:

I would like to use animator with my COBOL modules in Intermediate Code. In my COBOL modules I insert Oracle SQL Language.

The ANIMATOR loops on verb CALL 'SQLBEX' or STOP RUN.

COBSW= A

export COBSW

rtsora program01.int

Resolution:

When a Cobol module program01.cob ( the output file of the command procob progam01.pco )  is generated ( for example in Generated Code ), the file program01.idy can't be use to anim program01.int. If it is use , anim loops .

So It is necessary to generate in two phases:

Compile :

cob program01.cob

save the files program01.int & program01.idy

Generate :

   cob -u program01.int

and use the saved files to anim

But it is possible to anim the Generated Code file after use the command:

ob -ug program01.int

     

Old KB# 2322