IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Job Submitted Message


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
padmasriprasad

New User


Joined: 22 Feb 2008
Posts: 5
Location: Hyderabad

PostPosted: Sun Aug 24, 2008 1:26 am
Reply with quote

Hi all,
Once a job is submitted we will get message JOB<JOBID> is submitted.
My query is can we remove above sys message if yes please let me know
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Sun Aug 24, 2008 2:10 am
Reply with quote

As far as I know, you only get that message when you use the SUBMIT (TSO/E) or SUBMIT (ISPF) commands. I'd suggest using some other mechanism to place your jobs on the Internal Reader.
Back to top
View user's profile Send private message
MBabu

Active User


Joined: 03 Aug 2008
Posts: 400
Location: Mumbai

PostPosted: Sun Aug 24, 2008 5:31 am
Reply with quote

Code:
/* REXX - submit job without message */
oldMsg= msg()
call msg 'OFF'
"SUB WHATEVER(IEFBR14)" /* Submit 'userid.WHATEVER.CNTL(IEFBR14)' */
call msg oldMsg
Back to top
View user's profile Send private message
MBabu

Active User


Joined: 03 Aug 2008
Posts: 400
Location: Mumbai

PostPosted: Sun Aug 24, 2008 5:35 am
Reply with quote

(oops. pressed submit by mistake,so continued...) or
Code:
/* REXX - submit job without message */                         
call outtrap 'junk.'                                             
"SUB WHATEVER(IEFBR14)" /* SUB 'userid.WHATEVER.CNTL(IEFBR14)' */
call outtrap 'OFF'
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Mon Aug 25, 2008 12:27 pm
Reply with quote

Mbabu,

Quote:
/* REXX - submit job without message */
call outtrap 'junk.'
"SUB WHATEVER(IEFBR14)" /* SUB 'userid.WHATEVER.CNTL(IEFBR14)' */
call outtrap 'OFF'


As per the above code, i guess still the message would be displayed an dyou are just traping into a variable JUNK. I have not tested this.
Back to top
View user's profile Send private message
Selva-kumar

New User


Joined: 01 Mar 2007
Posts: 52
Location: chennai

PostPosted: Mon Aug 25, 2008 4:56 pm
Reply with quote

Code:

/* REXX - submit job without message */                         
msgflg = msg('off')                                           
"SUB WHATEVER(IEFBR14)" /* SUB 'userid.WHATEVER.CNTL(IEFBR14)' */
msgflg = msg('on')


This would work. It will not display the job submitted message. But you will get the job notification message. To avoid that remove the Notify parameter in the jcl.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
This topic is locked: you cannot edit posts or make replies. how can I proof that message was post... Java & MQSeries 1
No new posts IMS Message : DFS3577A IMS DB/DC 4
No new posts dsnrexx fails without error message CLIST & REXX 9
No new posts Print out all lines with 'IBM' compil... CLIST & REXX 8
No new posts How to get the message id thats trigg... Java & MQSeries 0
Search our Forums:

Back to Top