SAP Reports / Programs

RBS_SOA_IAS_SETUP_BGRFC SAP ABAP Report - Setup RFC destination and bgRFC Inbound destination







RBS_SOA_IAS_SETUP_BGRFC is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for In-application sequencing ensures the correct sequence for the processing of incoming messages on an application level...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RBS_SOA_IAS_SETUP_BGRFC into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

BS_SOA_IAS_CONF - Setup bgRFC Settings


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT RBS_SOA_IAS_SETUP_BGRFC. "Basic submit
SUBMIT RBS_SOA_IAS_SETUP_BGRFC AND RETURN. "Return to original report after report execution complete
SUBMIT RBS_SOA_IAS_SETUP_BGRFC VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: SRVR_GRP = D .
Title: Setup RFC destination and bgRFC Inbound destination
Text Symbol: 001 = RFC destination
Text Symbol: 002 = successfully created.
Text Symbol: 003 = already exists.
Text Symbol: 004 = Inbound destination
Text Symbol: 005 = successfully created.
Text Symbol: 006 = already exists.


INCLUDES used within this REPORT RBS_SOA_IAS_SETUP_BGRFC

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

RFC_MODIFY_R3_DESTINATION CALL FUNCTION 'RFC_MODIFY_R3_DESTINATION' EXPORTING destination = lv_destination action = 'I' authority_check = 'X' same_user = 'X' client = sy-mandt qrfcvers = '1' EXCEPTIONS authority_not_available = 1 destination_already_exist = 2 destination_not_exist = 3 destination_enqueue_reject = 4 information_failure = 5 trfc_entry_invalid = 6 internal_failure = 7 snc_information_failure = 8 snc_internal_failure = 9 destination_is_locked = 10 OTHERS = 11.

BGRFC_CREATE_INB_DEST CALL FUNCTION 'BGRFC_CREATE_INB_DEST' EXPORTING dest_name = lv_destination server_group = srvr_grp queue_prefix_tab = lt_queue_name return_errors_as_tab = 'X' IMPORTING error_message = lt_bgrfc_msg EXCEPTIONS destination_exists = 1 queue_prefix_exists = 2 dest_name_incorrect = 3 queueprefix_incorrect = 4 enqueue_not_available = 5 enqueue_error = 6 no_authorization = 7 destination_not_set = 8 server_group_not_maintained = 9 error_requesting_server_group = 10 classic_qrfc_present = 11 internal_error = 12 OTHERS = 13.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RBS_SOA_IAS_SETUP_BGRFC or its description.