cancel
Showing results for 
Search instead for 
Did you mean: 

PARSER UNEXPECTED_VALUE

Former Member
0 Kudos

Hi All,

My scenario is SOAP to ABAP proxy, when I am testing the data thorugh SOAP UI tool, I am getting the error message as

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

<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">

<SOAP:Header />

<SOAP:Body>

<SOAP:Fault>

<faultcode>SOAP:Client</faultcode>

<faultstring>Error during conversion of XI message</faultstring>

<faultactor>http://sap.com/xi/XI/Message/30</faultactor>

<detail>

<SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" SOAP:mustUnderstand="1">

<SAP:Category>XIProtocol</SAP:Category>

<SAP:Code area="PARSER">UNEXPECTED_VALUE</SAP:Code>

<SAP:P1>Main/@versionMajor</SAP:P1>

<SAP:P2>000</SAP:P2>

<SAP:P3>003</SAP:P3>

<SAP:P4 />

<SAP:AdditionalText />

<SAP:Stack>XML tag Main/@versionMajor has incorrect value 000; expected value is 003</SAP:Stack>

</SAP:Error>

</detail>

</SOAP:Fault>

</SOAP:Body>

</SOAP:Envelope>

please provide your valuable suggestion

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Boppana,

Try to hardcode the value 003 for the attribute versionMajor which is under Main segment in mapping. If it works then either you may send this value from source or hardcode it.

Regards,

---Satish

Answers (1)

Answers (1)

Former Member
0 Kudos

Thank you