Answer Posted / dimpy19
SYSUID - the user ID under which the current TSO/E session is logged on
SYSPREF - the prefix as defined in the user profile. The prefix is the string that is prefix to data set names that are not fully-qualified.
The prefix is usually the user's user ID.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
How does the jcl specify the job to os?
How to submit jcl through a cobol program?
Give the syntax of job specifying jcl statement.
How to alter the parameters for the existing gdg?
What is catelog procedure and how many catelog procedure to use in one job?
can any one plzzzzzz tell the jcl code for creating ps using idcams
List in order the hierarchical levels of jcl?
What is the function of the dd avgrec keyword in sms datasets?
What is the motivation behind coding class parameter in job statement?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
Explain dd statement in jcl?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?