Hi all,
I am working on the concept of notification of email whenver an error occured at the destination.I am using asynchronous interfaces in both sides.For this I implemented the Abap proxy generation to generate the exception class for the destination message interface(Data base) it is successfully generated and also iimplemented java exception to catch the exception.
But i am not able to find the process or to raise the exception at the destination side and I am unable to fill the the following structure.
data: l_standard_data type <Standard Fault Data Type>,
l_detail_data type <Detailed Structure for Standard Fault Data Type>,
l_additional_data type <Application Error Data Type>.
l_standard_data-fault_text = <Error Text>.
l_standard_data-fault_url = <Error URL>.
l_detail_data-severity = <System Error Category>.
l_detail_data-text = <System Error Text>.
l_detail_data-id = <System Error ID>.
l_detail_data-url = <System Error URL>.
append l_detail_data to l_standard_data-fault_detail.
l_additional_data = <Application Error Information>
RAISE EXCEPTION TYPE <Name of Exception Class>
EXPORTING
standard = l_standard_data
addition = l_additional_data.
Regards
sekhar