Hi All,
Need help on the following error while calling the web service which is caught in the try catch block.
RCVR_DETERMINATION.NO_RECEIVER_CASE_BE No receiver could be determine
Following steps are done.
· Server proxy is created in a system
· Posted the proxy locally using WSCONFIG
· Downloaded the WSDL file of the server proxy
· Using the above WSDL file, created a client proxy in the same system
· We are trying call this client proxy as per the below code and the getting the above error
REPORT ytest.
DATA : cl_web TYPE REF TO YSM0802_D_CO_YSM0802_D_CLOSE_N,
cl_root TYPE REF TO cx_root.
DATA : v_output TYPE zcc_sm_webyweb_service_respons,
wa_error TYPE bapiret2,
v_input TYPE YSM0802_D_YCLOSE_NOTIF_TEST.
v_input-iclose = 'X'.
TRY .
CREATE OBJECT cl_web.
*CREATE OBJECT cl_root.
CALL METHOD cl_web->YCLOSE_NOTIF_TEST
EXPORTING
input = v_input.
CATCH cx_ai_SYSTEM_fault INTO cl_root.
wa_error-message = cl_root->get_text( ) .
*CATCH .
ENDTRY.
WRITE : v_output-mail,
wa_error-message.
helpful answers will be rewarded
Regards,
Srikanth