cancel
Showing results for 
Search instead for 
Did you mean: 

Error during proxy processing An exception with the type CX_SY_DYN_CALL_ILLEGAL_FUNC occurred, but was neither handled locally, nor declared in a RAISING clause Function call failed; could not find the function ‘<Function Name>’.

Former Member
0 Kudos

Hi Experts,

kindly provide the right solution for the below issue.

Error during proxy processing An exception with the type CX_SY_DYN_CALL_ILLEGAL_FUNC occurred, but was neither handled locally, nor declared in a RAISING clause Function call failed; could not find the function ‘<Function Name>’.

Thanks

Kirankumar.s

Accepted Solutions (1)

Accepted Solutions (1)

former_member182455
Active Contributor
0 Kudos

Hi,

The error is due to an uncaught exception on the ABAP side. A functation which was called here not found results in the error in proxy communication.

Regards


Answers (1)

Answers (1)

vadimklimov
Active Contributor
0 Kudos

Hi Kiran,

This exception is raised when there was an attempt to call the function module that didn't exist in the system and the exception CX_SY_DYN_CALL_ILLEGAL_FUNC wasn't caught for this call. Please check implementation of your proxy. For this ABAP runtime error, check its details in tx. ST22: from there you can figure out which (missing) function module was called and from where this call was performed - this information would facilitate your analysis.

Regards,

Vadim