Application Development 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: 

Faxing issue with BCS

Former Member
0 Kudos

Hi guys,

I am looking for a solution that allows me to

- send faxes by Business Communication Services (BCS) without showing the sender fax on the document

- to receive the status of the fax (success or error), but I want to get rid of the undeliverable faxes.

I could not find anything suitable in classes CL_BCS and CL_SEND_REQUEST_BCS. I am a developer, maybe there is someting I can do in the system's settings...

Any idea is very welcome!

Best regards,

Gerald

3 REPLIES 3

former_member194669
Active Contributor
0 Kudos

Try this way


      move : 'N' to v_request_status. "<<< N means - no status returned >>>
      v_status = v_request_status.
      call method send_request->set_status_attributes
        exporting
          i_requested_status = v_request_status
          i_status_mail      = v_status.
      call method send_request->send( ).
      commit work.

0 Kudos

that's not the solution as I want to reiceive the status, but no undeliverable fax should be processed.

0 Kudos

I found only the following status in BCS_RQST


N	No Status Is to Be Returned
E	Only Error Statuses Are to Be Returned
A	Return All Statuses

May be talk with basis they can do something thru SCOT