View previous topic :: View next topic
|
Author |
Message |
vikas4u
New User
Joined: 12 Aug 2004 Posts: 14 Location: bangalore
|
|
|
|
can any one tell ;-
1. How to submit jcl thru cics ?
2. How to rectify S0C7 abend codes ?
3. What command to be used to covert the data entered by the user in
map to be folded to uppercase ?
4. D/f between Fset & Frset ?
5. What is MBT ?
Immediate reply will be appriciated....... |
|
Back to top |
|
|
priya
Moderator
Joined: 24 Jul 2003 Posts: 568 Location: Bangalore
|
|
|
|
Quote: |
How to submit jcl thru cics ? |
No, it's not possible.
Quote: |
How to rectify S0C7 abend codes ? |
S0C7
A numeric field contained non-numeric data.
Possible causes & Solution:
1. Numeric data was not initialized.
2. A subscript or index contained an invalid value.
3. A comp-3 field had an invalid sign.
4. A group move overlaid a numeric field with non-numeric data.
Quote: |
What command to be used to covert the data entered by the user in
map to be folded to uppercase ? |
UCTRANS (Opposite to TERMINAL ASIS)
Quote: |
D/f between Fset & Frset ? |
FSET set MDT to 1 while FRSET Reset MDT to 0.
I think, it's MDT. Modified Data Tag |
|
Back to top |
|
|
anuradha
Active User
Joined: 06 Jan 2004 Posts: 247 Location: Hyderabad
|
|
Back to top |
|
|
anuradha
Active User
Joined: 06 Jan 2004 Posts: 247 Location: Hyderabad
|
|
|
|
Hi Vikas,
By using the Following statement also it seems we can submit the JCl.
But never i checked personally.
Check this and let us also know if this works:
EXEC CICS SPOOL WRITE(VAR-NAME)
END-EXEC.
VAR-NAME is a cobol host structure containing jcl stmts.
Thanks,
Anu |
|
Back to top |
|
|
|