PDRSETUP 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 PDRSETUP into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PDRSETUP - First settings for PDR
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.
Selection Text: IV_SEND = Source
Selection Text: IV_RFC_E = Edit RFC destination
Selection Text: IV_RECV = Target
Selection Text: IV_P_SYS = Partner System
Selection Text: IV_PS_US = User
Selection Text: IV_PS_PW = Password
Selection Text: IV_OS_US = User
Selection Text: IV_OS_PW = Password
Selection Text: IV_NB_P = System Number
Selection Text: IV_NB_O = System Number
Selection Text: IV_MSV_P = Message Server
Selection Text: IV_MSV_O = Message Server
Selection Text: IV_MSG_P = Load Balancing
Selection Text: IV_MSG_O = Load Balancing
Selection Text: IV_MNDT = Client
Selection Text: IV_GRP_P = Group
Selection Text: IV_GRP_O = Group
Selection Text: IV_CHECK = Test Run
Selection Text: IV_BOTH = Source and Target
Selection Text: IV_ASV_P = Application Server
Selection Text: IV_ASV_O = Application Server
Selection Text: IV_APP_P = Application Server
Selection Text: IV_APP_O = Application Server
Selection Text: IV_ALE_E = Edit ALE distribution model
Title: PDR Setup
Text Symbol: 008 = Logon data for partner system
Text Symbol: 007 = Logon data for current system
Text Symbol: 006 = Logon data
Text Symbol: 005 = Server of current system
Text Symbol: 004 = Server of partner system
Text Symbol: 003 = Server selection
Text Symbol: 002 = Distribution type
Text Symbol: 001 = Default parameters for PDR setup
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FPDRSETUP CALL FUNCTION 'FPDRSETUP' EXPORTING iv_otsys = iv_p_sys iv_mndt = iv_mndt iv_check = iv_check iv_variant = gv_variant iv_ale_edit = iv_ale_e iv_rfc_edit = iv_rfc_e iv_server = gv_server iv_group = gv_group iv_synum = gv_synum iv_user = iv_ps_us iv_password = iv_ps_pw IMPORTING ov_error = lv_error CHANGING ct_slave = gt_slave EXCEPTIONS OTHERS = 1.
FPDRSETUP CALL FUNCTION 'FPDRSETUP' DESTINATION lv_rfc_dest EXPORTING iv_otsys = sy-sysid iv_mndt = sy-mandt iv_check = iv_check iv_variant = gv_variant iv_ale_edit = iv_ale_e iv_rfc_edit = iv_rfc_e iv_server = gv_server iv_group = gv_group iv_synum = gv_synum iv_user = iv_os_us iv_password = iv_os_pw iv_remote = 'P' * IMPORTING * ov_error = lv_error CHANGING ct_slave = gt_slave EXCEPTIONS communication_failure = 1 system_failure = 2 OTHERS = 3.
GENERAL_GET_APP_SERVER_NAME CALL FUNCTION 'GENERAL_GET_APP_SERVER_NAME' IMPORTING server_name = lv_name EXCEPTIONS error_reading_name = 1 OTHERS = 2.
WRITE_LIST CALL FUNCTION 'WRITE_LIST' TABLES listobject = gs_slave-list EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.