Tech Monger

Programming, Web Development and Computer Science.

Skip to main content| Skip to information by topic

Brodcast Informatica Repository Notifications

Often as an Informatica Administrator you want to send message to all informatica users to convey information such as addition of new feature or plugin, scheduled service downtime etc. You can send mails to all users but if you dont have email addresses of all users or want to target only currently logged in users then you can use pmrep notify command.

How to Use PMREP NOTIFY

pmrep notify command requires active pmrep session initiated with Administrator privileged users. Notify accept following mandatory argument. You can execute notify command in interactive mode or in command line mode (appropriate for scripts).

Flag Use
-m Message to be sent as part of notification.

Example - Interactive Session

  1. Connect to the informatica repository service with Administrator Access
    pmrep 
    connect -r MY_REP_SVC -d MY_INF_DOAMIN -n MY_USERNAME -X INF_PWD
  2. Send Notification Message with notify command
    notify -m "Here is the message from your administrators."

Example - Command Line Mode

Login repository service and invoke notify command. This is suitable for script based notification.

pmrep connect -r MY_REP_SVC -d MY_INF_DOAMIN -n MY_USERNAME -X INF_PWD
pmrep notify -m "Here is the message from your administrators."

Notification Output

Once notification is delivered then all logged in users would see following pop up message and notification message in notification tab as bellow.

Informatica Workflow Manager with PMREP Notify Popup
Sent Message inside Notification Tab of Informatica Client

Miscellaneous

  • Notification would not get delivered if repository service is not running properly.
  • Notify command would fail if no or invalid message string provided against manadatory -m switch.
  • Notify command wont be executed if no prior pmrep connection is initiated before invoking notify command.
  • Notify command returns either of two values notify successfully completed if command is succeeded else failure returned as failed to execute notify .
  • You can schedule notification message by using notify inside script.

Tagged Under : Informatica PMREP