cancel
Showing results for 
Search instead for 
Did you mean: 

error message com.sap.aii.af.ra.ms.api.DeliveryException: error while proce

Former Member
0 Kudos

hello experts

I am sending a message WS2RFC and recieve an error message that return from the RFC.

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

- <!-- Call Adapter

-->

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

<SAP:Category>XIAdapterFramework</SAP:Category>

<SAP:Code area="MESSAGE">GENERAL</SAP:Code>

<SAP:P1 />

<SAP:P2 />

<SAP:P3 />

<SAP:P4 />

<SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: error while processing the request to rfc-client: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: could not convert request from XML to RFC:com.sap.mw.jco.JCO$ConversionException: (122) JCO_ERROR_CONVERSION: Date '03042008' has a wrong format at field DATUM: Unparseable date: "03042008"</SAP:AdditionalText>

<SAP:ApplicationFaultMessage namespace="" />

<SAP:Stack />

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

</SAP:Error>

any ideas what it is and how to solve it?

Accepted Solutions (1)

Accepted Solutions (1)

turmoll
Active Contributor
0 Kudos

Hi,

Looks like you have passed data in wrong format to RFC input parameter.

Your format: DDMMYYYY (03042008)

Expected: YYYYMMDD

I would use a graphical mapping function "DataTrans" to convert date format from DDMMYYYY to YYYYMMDD.

Regards,

Jakub

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi ,

You are getting error because of difference in date format of source system data and SAP Date format. Check the SAP Date format and change the mapping accordingly to give to SAP in required format.

XI Date format and SAP date format is not exactly same. You can use string for XI date data ..

Ranjeet Singh.