SAP UPSRP_READ_CONTENT Function Module for
UPSRP_READ_CONTENT is a standard upsrp read content SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for upsrp read content FM, simply by entering the name UPSRP_READ_CONTENT into the relevant SAP transaction such as SE37 or SE38.
Function Group: UPSRP
Program Name: SAPLUPSRP
Main Program: SAPLUPSRP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function UPSRP_READ_CONTENT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'UPSRP_READ_CONTENT'".
EXPORTING
IM_LOGSYS = "Logical System
* IM_REPSTS = KUPS_REPSTS_POSTED "
IMPORTING
EX_TABNAME = "Table Name
EX_SYSNUM = "ALE Replication Table: System Number
TABLES
EXT_UPSREP = "ALE Replication Table: Replication Table
* IMT_OBJTYP = "ALE Distribution Unit: Object Types
EXCEPTIONS
NO_LOGSYS = 1 SYS_NOT_SUPPORTED = 2 NO_REPL_TAB = 3
IMPORTING Parameters details for UPSRP_READ_CONTENT
IM_LOGSYS - Logical System
Data type: LOGSYSOptional: No
Call by Reference: Yes
IM_REPSTS -
Data type: UPSREP01-REPSTSDefault: KUPS_REPSTS_POSTED
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for UPSRP_READ_CONTENT
EX_TABNAME - Table Name
Data type: TUPS05-TABNAMEOptional: No
Call by Reference: Yes
EX_SYSNUM - ALE Replication Table: System Number
Data type: TUPS05-SYSNUMOptional: No
Call by Reference: Yes
TABLES Parameters details for UPSRP_READ_CONTENT
EXT_UPSREP - ALE Replication Table: Replication Table
Data type: UPSREP01Optional: No
Call by Reference: Yes
IMT_OBJTYP - ALE Distribution Unit: Object Types
Data type: UPS_OBJTYP_STROptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_LOGSYS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SYS_NOT_SUPPORTED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_REPL_TAB -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for UPSRP_READ_CONTENT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_im_logsys | TYPE LOGSYS, " | |||
| lv_no_logsys | TYPE LOGSYS, " | |||
| lt_ext_upsrep | TYPE STANDARD TABLE OF UPSREP01, " | |||
| lv_ex_tabname | TYPE TUPS05-TABNAME, " | |||
| lv_ex_sysnum | TYPE TUPS05-SYSNUM, " | |||
| lv_im_repsts | TYPE UPSREP01-REPSTS, " KUPS_REPSTS_POSTED | |||
| lt_imt_objtyp | TYPE STANDARD TABLE OF UPS_OBJTYP_STR, " | |||
| lv_sys_not_supported | TYPE UPS_OBJTYP_STR, " | |||
| lv_no_repl_tab | TYPE UPS_OBJTYP_STR. " |
|   CALL FUNCTION 'UPSRP_READ_CONTENT' " |
| EXPORTING | ||
| IM_LOGSYS | = lv_im_logsys | |
| IM_REPSTS | = lv_im_repsts | |
| IMPORTING | ||
| EX_TABNAME | = lv_ex_tabname | |
| EX_SYSNUM | = lv_ex_sysnum | |
| TABLES | ||
| EXT_UPSREP | = lt_ext_upsrep | |
| IMT_OBJTYP | = lt_imt_objtyp | |
| EXCEPTIONS | ||
| NO_LOGSYS = 1 | ||
| SYS_NOT_SUPPORTED = 2 | ||
| NO_REPL_TAB = 3 | ||
| . " UPSRP_READ_CONTENT | ||
ABAP code using 7.40 inline data declarations to call FM UPSRP_READ_CONTENT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single TABNAME FROM TUPS05 INTO @DATA(ld_ex_tabname). | ||||
| "SELECT single SYSNUM FROM TUPS05 INTO @DATA(ld_ex_sysnum). | ||||
| "SELECT single REPSTS FROM UPSREP01 INTO @DATA(ld_im_repsts). | ||||
| DATA(ld_im_repsts) | = KUPS_REPSTS_POSTED. | |||
Search for further information about these or an SAP related objects