Skip to Content
Author's profile photo Jörg Knaus

SMQ2 Queue Monitoring Enhancement: Show Receiver Business System

hallo

i did an enhancement to SMQ2 in order to Show also the Receiver Business System Name, which is sometimes useful to see whats in the Queues:

Change Report (or copy to Z_…) RSTRFCM3

      write: syvline no-gap,
(24) trfcqviewfirsttid color col_key no-gap,
sy
vline no-gap, (10) trfcqviewfdate color col_key no-gap,
sy
vline no-gap, (8trfcqviewftime color col_key no-gap,
sy
vline no-gap, (32) trfcqviewdest   color col_key no-gap,
sy
vline no-gap, (24) trfcqviewwqname color col_key no-gap,
sy
vline no-gap.
hide: trfcqviewfirsttid, trfcqviewdest, trfcqviewwqname.
endif.
endif.
hide: valid_line.
*{   INSERT                                                 1
* Erweiterung für das XI-Monitoring – Empfänger System ausgeben
data: ls_sxmsqueue_rcv type sxmsqueue_rcv.

select single *
from sxmsqueue_rcv
into ls_sxmsqueue_rcv
where shortname eq trfcqviewqname+4(4).
if sysubrc eq 0.
write: ls_sxmsqueue_rcvbsn_system.
endif.

*}   INSERT

after that it looks like this:

/wp-content/uploads/2014/11/smq2_590508.gif

where D02 is an example (R/3) Business System

hope you also like this  🙂

Assigned Tags

      Be the first to leave a comment
      You must be Logged on to comment or reply to a post.