‎2021 Mar 30 6:08 PM
I created a custom RFC to update Order status and created web service. But I am getting the error as "Message E BS 001 cannot be processed in plugin mode HTTP". below is the screenshot.
‎2021 Mar 30 6:48 PM
‎2021 Mar 30 6:51 PM
Anyway, I guess that HTTP does not support the sending of error messages (MESSAGE ... TYPE 'E'), so you should intercept them:
CALL FUNCTION '...'
EXCEPTIONS
...
error_message = 47 " special exception to intercept MESSAGE (47 is arbitrary)
...
IF sy-subrc = 47.
" do whatever you want, but please don't send an error message
ENDIF.