It ismember/module not foundabend. This is either a case of a missing control card element, or program element - a control card is not present in the library specified in the JCL. This can occur when a control card/module is promoted from one test environment to another. The resolution ...
ACCEPT is a way to get data from SYSIN into your program. You could accomplish the same thing with a SELECT, an FD, an OPEN, and a READ. ACCEPT is a lazy way and many organizations have automated standards checking that will not allow ACCEPT in any production code. In your JCL, add ...
Currently I use IDCAMS to alter the gdg base limit to (1). It will not allow me to set to a limit of zero. Then I have an IEBGENER step that refers to the last generation with a disp of (OLD,DELETE). I then run a final IDCAMS to delete the gdg base. This method only works ...
Look in appropriate manual for format of directory for your type of PDS. See if you can work out what it does to the directory entry for a deleted member (I know they are still there with PDS's, or they were when I did something with a directory a long time ago). Print out the ...
For someone to help, you need to show more detail. Where is this being run? Online or in a batch job? If batch, show the jcl. Back to top Victor NiuNew UserJoined: 11 Mar 2010Posts: 59Location: China,Shanghai Posted: Sat Jun 12, 2010 9:08 am thanks for ur consideration......
No changes on the sortout file although the abend doesn't happen anymore. My requirement is I need to dynamically create the parm with the date values depending on when the job will be executed. If it is after 12AM, then I need to get the previous date in CCYYMMDD format. ...