what is the maximum error code in mainframe
Answers were Sorted based on User's Feedback
Answer / muttaiah
The return code can be from 0000 - 4095 for a step.
| Is This Answer Correct ? | 11 Yes | 1 No |
what will happen if pass values more than 100 using PARM parameter?
copy 100 records without using ibm utilities
What type of Call you would use if you don;t want the control back to the calling program?
IDENTIFICATION DIVISION. PROGRAM-ID. MOVEPGM. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-I PIC 9(2). PROCEDURE DIVISION. A1000-MAIN-PARA. PERFORM PARA-X WITH TEST BEFORE UNTIL WS-I= 5 STOP RUN. PARA-X. DISPLAY "BEST2". I m getting error s722,while executing the program, seems getting in loop, can anybody tell me why
How to use the same cobol program in Batch and CICS onlines ? Please expalin with an example. Thanks in advance.
What is length is cobol?
how many bytes does a s9(12)COMP-4 field occupy?? a.2 b.4 c.8 d.1 ans with reason please
What is the size of s9(19)comp3? explain
WHAT IS SOC3?HOW IT CAN BE RESOLVED?
how to access the file from prodution from changeman tool and to submit a file to production
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
Can we use redefine clause in occurs clause?