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: sy–vline no-gap,
(24) trfcqview–firsttid color col_key no-gap,
sy–vline no-gap, (10) trfcqview–fdate color col_key no-gap,
sy–vline no-gap, (8) trfcqview–ftime color col_key no-gap,
sy–vline no-gap, (32) trfcqview–dest color col_key no-gap,
sy–vline no-gap, (24) trfcqview–wqname color col_key no-gap,
sy–vline no-gap.
hide: trfcqview–firsttid, trfcqview–dest, trfcqview–wqname.
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 trfcqview–qname+4(4).
if sy–subrc eq 0.
write: ls_sxmsqueue_rcv–bsn_system.
endif.
*} INSERT
after that it looks like this:
where D02 is an example (R/3) Business System
hope you also like this 🙂