cancel
Showing results for 
Search instead for 
Did you mean: 

web service not working

Former Member
0 Kudos

Hi all,

I created a webservice for a function module.

Note : already there was a group of function modules in the webservice. I have included recently developed function module in the same webservice.

In soamanager, this function module is existed. but when i test that function module in soamanager, it is throwing an error saying -


CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception.An error occurred when deserializing in the simple transformation program /1BCDWB/WSS9F3FEB5B8A0EC491810.Value 01-04-2009 is not a valid date in accord with the XML format for ABAP

please guide me to solve this issue.

thanks and regards,

Murali Krishna T

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

1. Try checking the date format passed like mm-dd-yyyy to the webservice.

2. Cross verify the WSDL xml file structure for the input and out parameter tags.

Answers (1)

Answers (1)

Former Member
0 Kudos

Are you passing a date to the web service? Check out the type of the corresponding field, usually in the SOAP messages you have to stick to [ISO 8601|http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#isoformats] for date and time formats. This means that your date should be of form yyyy-mm-dd (see also the schema definition for the [date|http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#date] type).

Cheers, harald