Hello,
I am very new to SAP and webservices and have an issue with getting a response from a web service I created for a simple function module BAPI_CREATE_TRIP_FROM_DATA. I am getting the following response for the SOAP request from soapUI:
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"> <soap-env:Header/> <soap-env:Body> <soap-env:Fault> <faultcode>soap-env:Client</faultcode> <faultstring xml:lang="en">Dynamic function call failed</faultstring> <detail> <n0:DynamicFunctionCallFault xmlns:n0="http://www.sap.com/dynamic-call"> <FunctionName>BAPI_TRIP_CREATE_FROM_DATA</FunctionName> <ParameterMissingFault> <DescriptionText>Function call of BAPI_TRIP_CREATE_FROM_DATA failed; the obligatory parameter EMPLOYEENUMBER</DescriptionText> </ParameterMissingFault> <Caller> <Class>CL_SRG_RFC_PROXY_CONTEXT</Class> <Method>EXECUTE</Method> <Positions>1</Positions> </Caller> </n0:DynamicFunctionCallFault> </detail> </soap-env:Fault> </soap-env:Body></soap-env:Envelope>
I am using ECC 6.0 with GUI 7.10. soapUI is v3.5.1.
What is hard to find also is the purpose of the class / method mentioned ... nothing on googling either. All the errors seem to be on the DECODE method of the same class which is to do with serialization error, my issue is with the EXECUTE method.