IBM Tivoli Netcool/OMNIbus Version 8.1

IDUC SNDMSG

Use the IDUC SNDMSG command to send information messages to an Accelerated Event Notification client.

Syntax

IDUC SNDMSG destination, string_expression
The variables in this command can take the following values:
  • destination = spid | iduc_channel
  • spid = integer_expression (The literal client connection ID)
  • iduc_channel = string_expression (Channel name)
  • string_expression = Descriptive text to be sent as a message

Example

create trigger notify_isqlconn
group default_triggers
priority 1
on signal connect
begin
	if( %signal.process = 'isql' )
		then
			iduc sndmsg 'notif_isql', 'ISQL Connection from ' +
				%signal.node + ' from user ' +
				%signal.username + ' at ' +
				to_char(%signal.at)
	end if;
end;


Library | Support |