1

How to record WebSphere MQ FTE transfer result in a local queue?

T.Rob
  • 31,522
  • 9
  • 59
  • 103
Naveen
  • 25
  • 3

1 Answers1

0

Define an administrative subscription to the WMQ FTE transfer publications and direct it to the queue where you wish these events to be reported.

DEFINE QL(MY.LOCAL.QUEUE) +
   REPLACE

DEFINE SUB(FTE.TRANSER.RESULTS) +
   DEST(MY.LOCAL.QUEUE) +
   TOPICSTR('SYSTEM.FTE/#') +
   REPLACE
T.Rob
  • 31,522
  • 9
  • 59
  • 103