SAP Reports / Programs | Basis Components | Basis Services / Communication Interfaces | Communication Services: Mail, Fax, SMS, Telephony(BC-SRV-COM) SAP BC

RSCONN03 SAP ABAP Report - SAPconnect: Explanation of Routing and Address Conversion







RSCONN03 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

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


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 RSCONN03. "Basic submit
SUBMIT RSCONN03 AND RETURN. "Return to original report after report execution complete
SUBMIT RSCONN03 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: SAPconnect: Explanation of Routing and Address Conversion
Text Symbol: 001 = Step 2: Determine node
Text Symbol: 002 = Step 3: Convert address into an external format
Text Symbol: 003 = Step 1: Check entered addresses
Text Symbol: 004 = In this step, the following error was identified:
Text Symbol: 005 = No error in this step
Text Symbol: 006 = Step 4: Creation of a Test URL (Only with HTTP Nodes) with Dummy Data


INCLUDES used within this REPORT RSCONN03

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:

SX_MESSAGE_TEXT_BUILD * call function 'SX_MESSAGE_TEXT_BUILD' * exporting * msgid = sy-msgid * msgnr = sy-msgno * msgv1 = sy-msgv1 * msgv2 = sy-msgv2 * msgv3 = sy-msgv3 * msgv4 = sy-msgv4 * importing * message_text_output = msg_txt.

SX_ADDRESS_TRANSLATE CALL FUNCTION 'SX_ADDRESS_TRANSLATE' "Translate input string EXPORTING address_in = recipient "to structure to_string = sx_false explain = sx_true applog = gp_applog_handle simple_fax = sx_true IMPORTING address_out = recipient EXCEPTIONS OTHERS = 1.

SX_NODE_ID_DETERMINE CALL FUNCTION 'SX_NODE_ID_DETERMINE' "Determine route EXPORTING recipient = recipient sender = sender explain = sx_true applog = gp_applog_handle IMPORTING node_id = node EXCEPTIONS OTHERS = 1.

SX_NUMBER_CONVERT CALL FUNCTION 'SX_NUMBER_CONVERT' EXPORTING address_in = recipient node = node is_receiver = sx_true is_outbound = sx_true explain = sx_true IMPORTING address_out = recipient EXCEPTIONS OTHERS = 1.

SX_URL_CREATE CALL FUNCTION 'SX_URL_CREATE' EXPORTING receiver = l_receiver sender = l_sender SENDER_NAME = 'dummy_from' "#EC NOTEXT messagetext = 'dummy_messagetext' "#EC NOTEXT node = node * TRACEURL = hidepw = sx_true IMPORTING url = l_url * RESULTTEXT = * RESULTISERROR = EXCEPTIONS err_sender_address = 1 err_receiver_address = 2 err_node = 3 err_text_too_long = 4 err_conversion = 5 OTHERS = 6.

BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = ls_log IMPORTING e_log_handle = gp_applog_handle EXCEPTIONS OTHERS = 1.

BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_s_msg = l_s_msg i_log_handle = gp_applog_handle.

BAL_DSP_PROFILE_DETLEVEL_GET CALL FUNCTION 'BAL_DSP_PROFILE_DETLEVEL_GET' IMPORTING E_S_DISPLAY_PROFILE = ls_profile .

BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_profile i_t_log_handle = lt_handles EXCEPTIONS OTHERS = 0.



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 RSCONN03 or its description.