How to send notification to multiple users through jcl???
Answer Posted / sangeetha
Notification could be send using the following JCL
//STEPNAME EXEC PGM=IKJEFT01
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD DDNAME=SYSIN
SEND 'MESSAGE' U(USERID) LOGON
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
How to execute 2nd and 4th steps among 5 steps in jcl proc?
what is the JCL statement consists of?
what are the types of abends that occur on job failure? And explain the possible causes of these
How jcl work to handle various input output file operations?
Is it possible to define dd statements as you want?
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
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
How is the record format of an output dataset specified?
Is their any limit for data sets?
what is the difference between JES3 and JES2?
whats the diff bw the evaluate also and and?
how would you create a temporary dataset? And where will you use them?
How can an in-stream dataset be terminated?
Which statement is used to identify the private libraries in job?
Explain the hierarchy levels in jcl?