cancel
Showing results for 
Search instead for 
Did you mean: 

Synchronous inbound scenario in AIF

Former Member
0 Kudos

Hi,

I have a proxy syncronus inbound scenario in ECC with PI (I am using standard ES provided by SAP). I need to activate AIF monitoring

I configured interface in /AIF/CUST (Error Hangling).But I can only see request message in AIF monitoring ... How to enable response message as well , Do I need to create

another AIF interface for response

Pls help

Regards

goutam

Accepted Solutions (0)

Answers (1)

Answers (1)

ArcherZhang
Advisor
Advisor
0 Kudos

Hi Goutam,

From my knowledge, you can try this:

1, Make your RAW structure include REQUEST and RESPONSE component.

2, Add below code at the end of ACTION function module.

* Add response content to RAW structure

raw-response = ls-response.

* Call application engine to save payload again.

CALL METHOD lr_appl_engine->persist_message_data EXPORTING iv_use_buffer = iv_use_buffer CHANGING cr_xmlparse = lr_xmlparse.

BRs,

Archer