Answer Posted / dimpy19
>>-SYSVAR(arg_name)--------------------------------------------><
1. SYSVAR returns information about MVS�, TSO/E, and the current session, such as levels of software available, your logon procedure, and your user ID.
2. The information returned depends on the arg_name value specified on the function call.
3. The arg_name values are divided into the following categories of information: user, terminal, exec, system, language, and console session information.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of dd dummy statement?
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
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
For what purpose steplib and joblib are used ?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
How can a fb file convert to vb file using sort program?
Can an individual step be restricted from using all the jobs allowed cpu time?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
Can I share my data with other jobs? How?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
Name what parameter directs the output of the job log dataset?
What do you understand by the term job time – out and how can you overcome that?
What is one line to pass PARM from JCL to COBOL?