How to Suppress TSO messages in ESP Workload Automation
search cancel

How to Suppress TSO messages in ESP Workload Automation

book

Article ID: 20551

calendar_today

Updated On:

Products

ESP Workload Automation

Issue/Introduction

If your TSO user ID is the owner of the event, then whenever the event triggers the messages will be sent to you.

As a result, when you logon, you may get many TSO messages.

 

Environment

Component: ESP WORKLOAD AUTOMATION 
Release:   12.0

Resolution

How to Suppress TSO messages in ESP Workload Automation

Update ESP PARMLIB member CYBESS03 by adding:
TSOSEND DISABLE

The TSOSEND initialization parameter applies either with or without mailbox specified in the Event definition, and a TSOUSER parameter is included in the mailbox definition.

(TSOSEND command does not apply to messages initiated by NOTIFY and SEND commands).

Note:  This parm affects ALL TSO users on this ESP system. If you ONLY want to suppress TSO messages for one specific user, you can do the following:

Create a MAILBOX as follows in the MAILLIST table:
MAILBOX NULL MAXLINES(0)


Change related PROFILE parm in UPDT table by including MAILBOX(NULL) as follows:
     PROFILE USER(USER1) EVENTSET(EVENT1) HIST(-) MAILBOX(NULL)


Reload both MAILLIST and UPDT from ESP page mode:
OPER LOADNL '<your parmlib>(MAILLIST)'
OPER LOADUPDT '<your parmlib>(UPDT)'


Then TSO user USER1 will not get TSO messages, but other TSO users won't be affected.