简体   繁体   中英

Is it possible to collect all messages during transaction execution?

We have two SAP systems. One of them call RFC function module on second side. This module, in turn, runs transaction. Transaction yields some messages (type 'I' and 'S') which impossible to detect on the caller side.

So, Is it possible to take those messages through RFC to caller side?

From the call transaction documentation

... MESSAGES INTO itab 

Effect

Using this addition, all the messages sent during batch input processing are stored in an internal table itab of the type BDCMSGCOLL from the ABAP Dictionary.

So yes, if you call a transaction via call transaction statement, you can gather all messages with this addition.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM