Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Message E BS 001 cannot be processed in plugin mode HTTP

0 Likes
1,071

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.


2 REPLIES 2
Read only

Sandra_Rossi
Active Contributor
897

There's no screenshot.

Read only

Sandra_Rossi
Active Contributor
897

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.