wht do u mean by (*,intrdr) wht is * used for ?
Answers were Sorted based on User's Feedback
Answer / shaan
(*,intrdr) is used to submit jcl from cobol program by
coding it as
//seqflo dd sysout=(*,intrdr),where seqflo is the file name
which contains the jcl statements to be submitted.
Here * represents the same msgclass coded in the job step.
| Is This Answer Correct ? | 9 Yes | 2 No |
how to create temporary data set in jcl? what is the use?
3 Answers Cap Gemini, Temenos,
I am getting S00F abend when i try to compare two variable of different pic class,one variable is of 9(09) and another is S9(09) comp-3. First i moved the data from S9(09) comp-3 to 9(09), but no luck. So i tried to move the data from S9(09) comp-3 to X (09) and move to 9(09). I am getting same error message, Please help me to find solution for this ptoblem. ERROR MESSAGE - "The system or user abend S00F R=NULL was issued."
what is the use of keep and pass in disp
How do you define a variable of comp-1 and comp-2?
where do we use dyanamic call ? and where do we use static call pls give any example pls ?
How does IDMS insure data integrity?
What is the compute verb? How is it used?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
how do u indetify files succesfully executed or not ?
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
How can we increase the size of an existing PDS to include more no. of modules.
How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?