HOw to submit a job from other user id.? for exp some other
job name like "t4622sdx".now i want to submit that job from
my user id?(we don't know that location at all Just we know
job name)
Answer / muttaiah
If you are submitting manually using "SUB" Command on CMD
Prompt. Then use USERID, PASSWORD parm's in JOB card.
If the job is triggered by Schedular. Then you have to
request the particular team which is running that job to
run it under your ID.
Does this answer you Question?
Is This Answer Correct ? | 5 Yes | 2 No |
I have a PDS and want to omit few rows of all members of a PDS. How to do it?
Explain how can a stopped job be started again?
can u execute a proc from another proc?
Can we change the LIMIT of GDG?
Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
what is the meaning of keyword in jcl?what is is opposite?
Is there any command to check wether the ps file is in sorted order?
I have GDG defined e.g. GDG.smaplegdg.base, after processing the GDG. it contains some records and which is input to the second step2. How can I use GDG to use it as input file at step2.
How is the record format of an output dataset specified?
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
how would you create a temporary dataset? And where will you use them?