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
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
How does the jcl specify the job to os?
how JCL works?
how you will the direct the data to spool using sysout option?
how do you access an uncataloged dataset in a jcl?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
What do you understand by jcl?
What are the parameters that are used in creating a gdg?
define cond parameter in jcl?
How can a jobs execution priority be modified?
What does a disposition of (MOD,DELETE,DELETE) mean ?
Is condition checking possible in jcl?
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
Must tape dataset definitions include vol=ser specifications?