SAP RSSDK_DATA_UPLOAD_ALL Function Module for Display of a Data Extraction of a SDK Data Source









RSSDK_DATA_UPLOAD_ALL is a standard rssdk data upload all SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Display of a Data Extraction of a SDK Data Source processing and below is the pattern details for this FM, 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 rssdk data upload all FM, simply by entering the name RSSDK_DATA_UPLOAD_ALL into the relevant SAP transaction such as SE37 or SE38.

Function Group: RSSDK
Program Name: SAPLRSSDK
Main Program: SAPLRSSDK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RSSDK_DATA_UPLOAD_ALL 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 'RSSDK_DATA_UPLOAD_ALL'"Display of a Data Extraction of a SDK Data Source
EXPORTING
I_ISOURCE = "InfoSource
I_LOGSYS = "Source System
I_OLTPSOURCE = "DataSource
I_REQUESTID = "

TABLES
* I_T_SELVALUES = "
* E_T_MESSAGES = "Notification Transfer

EXCEPTIONS
UNKNOWN_SDK_METADATA = 1 UNKNOWN_SDK_SYSTEM = 2
.



IMPORTING Parameters details for RSSDK_DATA_UPLOAD_ALL

I_ISOURCE - InfoSource

Data type: RSLDPIO-SOURCE
Optional: No
Call by Reference: Yes

I_LOGSYS - Source System

Data type: RSLDPIO-LOGSYS
Optional: No
Call by Reference: Yes

I_OLTPSOURCE - DataSource

Data type: RSOLTPSOURCER
Optional: No
Call by Reference: Yes

I_REQUESTID -

Data type: RSARI_REQUESTID
Optional: No
Call by Reference: Yes

TABLES Parameters details for RSSDK_DATA_UPLOAD_ALL

I_T_SELVALUES -

Data type: RSARR_T_REQUEST_SVALUES
Optional: Yes
Call by Reference: No ( called with pass by value option)

E_T_MESSAGES - Notification Transfer

Data type: RSAOS_T_MESSAGES
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

UNKNOWN_SDK_METADATA -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

UNKNOWN_SDK_SYSTEM -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for RSSDK_DATA_UPLOAD_ALL 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_i_isource  TYPE RSLDPIO-SOURCE, "   
lt_i_t_selvalues  TYPE STANDARD TABLE OF RSARR_T_REQUEST_SVALUES, "   
lv_unknown_sdk_metadata  TYPE RSARR_T_REQUEST_SVALUES, "   
lv_i_logsys  TYPE RSLDPIO-LOGSYS, "   
lt_e_t_messages  TYPE STANDARD TABLE OF RSAOS_T_MESSAGES, "   
lv_unknown_sdk_system  TYPE RSAOS_T_MESSAGES, "   
lv_i_oltpsource  TYPE RSOLTPSOURCER, "   
lv_i_requestid  TYPE RSARI_REQUESTID. "   

  CALL FUNCTION 'RSSDK_DATA_UPLOAD_ALL'  "Display of a Data Extraction of a SDK Data Source
    EXPORTING
         I_ISOURCE = lv_i_isource
         I_LOGSYS = lv_i_logsys
         I_OLTPSOURCE = lv_i_oltpsource
         I_REQUESTID = lv_i_requestid
    TABLES
         I_T_SELVALUES = lt_i_t_seltalues
         E_T_MESSAGES = lt_e_t_messages
    EXCEPTIONS
        UNKNOWN_SDK_METADATA = 1
        UNKNOWN_SDK_SYSTEM = 2
. " RSSDK_DATA_UPLOAD_ALL




ABAP code using 7.40 inline data declarations to call FM RSSDK_DATA_UPLOAD_ALL

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 SOURCE FROM RSLDPIO INTO @DATA(ld_i_isource).
 
 
 
"SELECT single LOGSYS FROM RSLDPIO INTO @DATA(ld_i_logsys).
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!