wht is sysudump n sysout,sysprint ?
Answer / rajesh_m13
Usually the executing program displays are written into
these datasets.Some programs use Sysout for display some
sysprint ,Cobol program display will go to Sysout.Sysudump
will print the program area,contents of register, and gives
a trace back of subroutines called,it will be hexadecimal
format.
| Is This Answer Correct ? | 2 Yes | 1 No |
01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
How to execute 300 steps in a Job?
what are the symbolic parameters? why do we use symbolic parameters ?
2 Answers IBM, TCS, UST, Xansa,
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above
IN MY JCL I VE 8 STEPS I WANT TO EXCUTE STEP 8 FIRST THEN EXCUTE STEP 4 ,HOW WILL EXCUTE STEP 8 BEFORE STEP 4?
7 Answers Cognizant, IBM, IGT,
What are three major types of JCL statements? What are their functions?
What is difference between Return Code, user completion code, Abend code and reason Code?
Max. No of DD statements in a job ?
How can a fb file convert to vb file using sort program?
How do you override a specific DDNAME/SYSIN in PROC from a JCL?
Suppose there r 10 steps . Out fo which i want to execute 10th, 9th and 8th in reverse order without using IEBEDIT. How can i do that..???
In order to continue a job after a return code of 12 in step1, what the step2 exec statement include?