Dear Experts,
I am creating an inbound interface and the ABAP code is written for this in the Provider class of the service interface in the SPROXY ESR.
in the provider class importing param we have the legacy source structure and an exception.
once i am done with all the abap processing i am trying to raise an exception which will be visible in the SXMB_MONI.
but unfortunately i am not getting any messages in the SXMB_MONI.
when i remove the try and entry block it gets into DUMP. is there any way that i can show this exception.
please let me know.
Ref CODE:
TRY
RAISE EXCEPTION TYPE z_fault_message
EXPORTING
standard = li_standard_data.
catch z_fault_message.
endtry.