Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to send notification to multiple users through jcl???

Answers were Sorted based on User's Feedback



How to send notification to multiple users through jcl???..

Answer / 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

How to send notification to multiple users through jcl???..

Answer / nk

try smtp to send an email.

Is This Answer Correct ?    7 Yes 4 No

How to send notification to multiple users through jcl???..

Answer / ram g

no sangeetha, what you're saying is just to send a mesgs
not a rc notification which we are getting after jcl
submition. for eg: you're submiting a job called jobA which
gives the rc as 0, obviously you're going to get this rc in
you mf screen by having the code notify = &sysuid or notify
= user001 here i want to notify user002, user003 etc about
the jobA rc notifcation. i hope you would have got my
question by now...

Thx..

Is This Answer Correct ?    2 Yes 0 No

How to send notification to multiple users through jcl???..

Answer / chandrakant sinha

SEND FUNCTION - COMMUNICATION BETWEEN USER TERMINALS, OR
BETWEEN USER TERMINAL AND OPERATOR
CONSOLE.

SYNTAX: SEND ''TEXT'' USER('USERID LIST')
NOW/LOGON/SAVE NOWAIT/WAIT

OPERANDS –

''TEXT'' - MESSAGE TO BE SENT IN QUOTES.

USER('USERID LIST') - SPECIFIES THAT THE MESSAGE IS TO BE
SENT TO THE INDICATED USER(S)
ONLY.

NOW - SPECIFIES THAT THE MESSAGE IS TO BE SENT NOW.

TSO Command: TSO send 'this is a test message ' user
(userid1,userid2,userid3,…) now

Is This Answer Correct ?    2 Yes 0 No

How to send notification to multiple users through jcl???..

Answer / jin

Just add a step to send message at end of JCL when your step
RC = 0

//STEP1 EXEC PGM=...
...

// IF STEP1.RC = 0 THEN
//STEPNAME EXEC PGM=IKJEFT01
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD DDNAME=SYSIN
SEND 'MESSAGE' U(USERID1,USERID2,USERID3) LOGON
// ENDIF

Is This Answer Correct ?    1 Yes 0 No

How to send notification to multiple users through jcl???..

Answer / raghu

by using notify parameter

Is This Answer Correct ?    1 Yes 0 No

How to send notification to multiple users through jcl???..

Answer / muttaiah

Chandrakant sinha, You are simply elaborating what
sangeetha told previously in her post. This is not the
actual thing what Ram.g(Who posted) is expecting anyhow
thanks for explaining in clear about send command.

usualy we will get a notification once the job completes
normally/abnormally. Ram wants how we can send the same
notification to multiple users.

Some jobs may be critical that it should complete
successfully. In that case, there may be some notification
sent to multiple users about the completion.

Is This Answer Correct ?    0 Yes 0 No

How to send notification to multiple users through jcl???..

Answer / ram.g

Thx for ur ans..but that's not the one i'm looking for..for
eg: thru notify we can send notification to one user..and
its restricted in jcl that we can't use more than one
time..but there are some way we could send notification to
more than one user..other than the concept of email...but i
couldn't figure it out that command...

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More JCL Interview Questions

Passing a variable parm from JCL to a cobol/db2 program

1 Answers   IBM,


I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?

16 Answers  


Name the system library from which modules are retrieved at execution

3 Answers  


What is a GDG? How is it referenced? How is it defined? What is a MODELDSCB?

3 Answers  


I have a File that has duplicate records. I need only those records that occur more than thrice.

3 Answers  


How to concatenate different LRECL of files?

2 Answers   IBM,


Hi, If a catolog proc has another proc in it, both have ddnames dd1 and dd2. what proc will override if gave override parameter. Here both have same step names.

2 Answers   UHG,


How is the keyword DUMMY used in JCL?

4 Answers  


IIN APITUDE THEY GAVE ONLY 10 QUESTIONS.. THEY ARE SIMPLE ONE FROM NUMBER SERIES,BOATS,TIME & DISTANCE,PROFIT &LOSS,FIND OUT THE NUMBER ? 9 25 4 36 81 64 49 AND surveillance SPELLINGS E.T.C

0 Answers  


a job have 5 steps and it will executes a proc which have 5steps in it. now i have to execute step3 only when step2 of proc executes successfully

3 Answers  


wht is the d/f between positional parameter n keyword parameter ?

1 Answers  


COND -> step1 . . step2, Step2, Executes if the CC of step1 is 0. But even if it is NOT 0 and if we dont give COND, will step2 be executed ?

4 Answers   IBM,


Categories