the command to open a dataset directly from the JCL instead
of opening it separately using 3.4 option.
Answers were Sorted based on User's Feedback
Hi................
U can also open a file using dslist
as following.
DSLIST 'COOL.TOP.JCL'
Thanks.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / aswini
There is a command availablemode
Thus, we can avoid using 3.4 option.
Issue : EPDF ‘MYID.MYPS’ . The Dataset will be opened in
EDIT MODE
If you want to open in VIEW mode:
Issue : EPDF ‘MYID.MYPS’VIEW
Similarly, for opening in BROWSE mode, typeB ROWSE at the
end.
Is This Answer Correct ? | 6 Yes | 4 No |
Answer / vishwadeep
at the command prompt give CB or CE depending on(browse or
edit) and hit enter placing the
cursor on the DSN which you want to open.
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / pradeep k (cr)
write either LV(to open in view mode) or ED(to open in EDIT
mode) in command prompt and select your dataset by keepking
mouse point at that dataset. Now hit enter, selected
dataset will open.
Is This Answer Correct ? | 1 Yes | 2 No |
Answer / ranjit
1.Type "LDSN" in the command line
2.Place the cursor on the dataset you want to open
and Hit enter
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / muttaiah
Hi,
There is no such command as far as i know, We can create a
rexx macro using which we can open in edit/view/browse mode
without using 3.4 option.
I hope you didn't work in real time that's why not aware of
this thing.
Thanks,
Muttaiah.
Is This Answer Correct ? | 1 Yes | 4 No |
Answer / vani
In changeman tool,
at the command prompt give b/v/d and hit enter placing the
cursor on the DSN which you want to open.
In rational tool,
at the command prompt give du b/v/d and hit enter placing
the cursor on the DSN which u want to open
b-browse
v-view
d-delete
Is This Answer Correct ? | 0 Yes | 3 No |
I have a dataset with record length 40 in production, due to some requirements it was changed to 80. Then how can we know the jobs which are effected by this change and how can we resolve it.
What are the default system and catalog libraries in JCL?
Can we use DISP=SHR in output file in JCL
Can we have a JOBSTEP without any EXEC ?
What is NOTCAT ?
what is inrec fields and outrec fields in sorting
What do you understand by jcl?
List in order the hierarchical levels of jcl?
can we write a proc with in a proc
What are the differences between JES2 & JES3 ?
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
Passing a variable parm from JCL to a cobol/db2 program