cancel
Showing results for 
Search instead for 
Did you mean: 

Error by the proxy

Former Member
0 Kudos

Hi Gurus,

I am facing one problem related to proxy.Our scenario is Data is flowing from mainframe system in to XI through custom adapter build by us and then through inbound proxy data is getting posted in to the SAP ISU system and the order is getting created .Since the scenario is synchronous then the response message is coming out of SAP with the details of the order and going into the mainframe system through XI.Now sometimes it is giving a error in XI as follows:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>

- <!-- Inbound Message

-->

- <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">

<SAP:Category>XIProxy</SAP:Category>

<SAP:Code area="ABAP">DYNAMIC_CALL_FAILURE</SAP:Code>

<SAP:P1>DYNPRO_SEND_IN_BACKGROUND</SAP:P1>

<SAP:P2>ZCL_MIIS_AP2_5_1_13_UMFA</SAP:P2>

<SAP:P3>EXECUTE_SYNCHRONOUS</SAP:P3>

<SAP:P4 />

<SAP:AdditionalText />

<SAP:ApplicationFaultMessage namespace="" />

<SAP:Stack>Error during proxy processing Sending of dynpro SAPLSMPO 0100 not possible: No window system type specified</SAP:Stack>

<SAP:Retry>M</SAP:Retry>

</SAP:Error>

Please let me know if any one had faced this problem and it's solution.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks for the reply....This has definitely helped me....

stefan_grube
Active Contributor
0 Kudos

Your inbound proxy program has a dialog process.

This is not allowed in proxy.

Fix the ABAP program.

Former Member
0 Kudos

Hi Stefan,

In the proxy program atfirst there is some validation check being done on data and then notification and order is created using BAPI 'BAPI_ALM_NOTIF_SAVE' and then 'BAPI_TRANSACTION_COMMIT' to save the notification.Then 'BAPI_ALM_ORDER_MAINTAIN ' is used to save and release the order. Is the coding creating the problem ?

Thanks and Regards,

Arijit Guha.

stefan_grube
Active Contributor
0 Kudos

> Is the coding creating the problem ?

Yes. Obviously.