SAP RSSM_RSSELDONE_READ Function Module for Read RSSELDONE









RSSM_RSSELDONE_READ is a standard rssm rsseldone read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read RSSELDONE 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 rssm rsseldone read FM, simply by entering the name RSSM_RSSELDONE_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function RSSM_RSSELDONE_READ 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 'RSSM_RSSELDONE_READ'"Read RSSELDONE
EXPORTING
* I_RNR = "Request number for the data transfer
* I_LNR_MAX = 0 "
* I_ONLY_INFOID = ' ' "Boolean
* I_T_RNR = "
* I_T_WHERE = "Transfer structure
* I_DISTINCT = "30 Characters
* I_SINGLE_SELECT = "Boolean
* I_NOT_EXIST = "Boolean
* I_USE_SL_TABS = "Boolean
* I_FIRST_ROWS = "Boolean
* I_PARAMETER = "Raw String

IMPORTING
E_S_RSSELDONE = "Monitor: Saving of the QM entries
E_T_MSG = "BW: Table with Messages (Application Log)
E_RETURN = "Raw String

TABLES
* E_T_RSSELDONE = "Monitor: Saving of the QM entries
* SL_TYP = "
* SL_RNRTYP = "
* SL_QUELLE = "
* SL_ZIEL = "
* SL_RNR = "
* SL_DATUM = "
* SL_ISOURCE = "
* SL_LOGSYS = "
* SL_OLTPSOURCE = "
* SL_LOGDPID = "
* SL_LOGGRID = "
* SL_INFOPAKID = "
* SL_UNAME = "
* SL_VARIANT = "
.



IMPORTING Parameters details for RSSM_RSSELDONE_READ

I_RNR - Request number for the data transfer

Data type: RSSELDONE-RNR
Optional: Yes
Call by Reference: Yes

I_LNR_MAX -

Data type: I
Optional: Yes
Call by Reference: Yes

I_ONLY_INFOID - Boolean

Data type: RS_BOOL
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_T_RNR -

Data type: RSSM_T_REQUEST
Optional: Yes
Call by Reference: Yes

I_T_WHERE - Transfer structure

Data type: RSSM1_T_WHERE
Optional: Yes
Call by Reference: Yes

I_DISTINCT - 30 Characters

Data type: CHAR30
Optional: Yes
Call by Reference: Yes

I_SINGLE_SELECT - Boolean

Data type: RS_BOOL
Optional: Yes
Call by Reference: Yes

I_NOT_EXIST - Boolean

Data type: RS_BOOL
Optional: Yes
Call by Reference: Yes

I_USE_SL_TABS - Boolean

Data type: RS_BOOL
Optional: Yes
Call by Reference: Yes

I_FIRST_ROWS - Boolean

Data type: RS_BOOL
Optional: Yes
Call by Reference: Yes

I_PARAMETER - Raw String

Data type: RSRAWSTRING
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for RSSM_RSSELDONE_READ

E_S_RSSELDONE - Monitor: Saving of the QM entries

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

E_T_MSG - BW: Table with Messages (Application Log)

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

E_RETURN - Raw String

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

TABLES Parameters details for RSSM_RSSELDONE_READ

E_T_RSSELDONE - Monitor: Saving of the QM entries

Data type: RSSELDONE
Optional: Yes
Call by Reference: Yes

SL_TYP -

Data type:
Optional: Yes
Call by Reference: Yes

SL_RNRTYP -

Data type:
Optional: Yes
Call by Reference: Yes

SL_QUELLE -

Data type:
Optional: Yes
Call by Reference: Yes

SL_ZIEL -

Data type:
Optional: Yes
Call by Reference: Yes

SL_RNR -

Data type:
Optional: Yes
Call by Reference: Yes

SL_DATUM -

Data type:
Optional: Yes
Call by Reference: Yes

SL_ISOURCE -

Data type:
Optional: Yes
Call by Reference: Yes

SL_LOGSYS -

Data type:
Optional: Yes
Call by Reference: Yes

SL_OLTPSOURCE -

Data type:
Optional: Yes
Call by Reference: Yes

SL_LOGDPID -

Data type:
Optional: Yes
Call by Reference: Yes

SL_LOGGRID -

Data type:
Optional: Yes
Call by Reference: Yes

SL_INFOPAKID -

Data type:
Optional: Yes
Call by Reference: Yes

SL_UNAME -

Data type:
Optional: Yes
Call by Reference: Yes

SL_VARIANT -

Data type:
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for RSSM_RSSELDONE_READ 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_rnr  TYPE RSSELDONE-RNR, "   
lv_e_s_rsseldone  TYPE RSSELDONE, "   
lt_e_t_rsseldone  TYPE STANDARD TABLE OF RSSELDONE, "   
lt_sl_typ  TYPE STANDARD TABLE OF RSSELDONE, "   
lv_i_lnr_max  TYPE I, "   0
lt_sl_rnrtyp  TYPE STANDARD TABLE OF I, "   
lv_i_only_infoid  TYPE RS_BOOL, "   SPACE
lt_sl_quelle  TYPE STANDARD TABLE OF RS_BOOL, "   
lt_sl_ziel  TYPE STANDARD TABLE OF RS_BOOL, "   
lt_sl_rnr  TYPE STANDARD TABLE OF RS_BOOL, "   
lt_sl_datum  TYPE STANDARD TABLE OF RS_BOOL, "   
lv_e_t_msg  TYPE RS_T_MSG, "   
lv_i_t_rnr  TYPE RSSM_T_REQUEST, "   
lt_sl_isource  TYPE STANDARD TABLE OF RSSM_T_REQUEST, "   
lv_e_return  TYPE RSRAWSTRING, "   
lv_i_t_where  TYPE RSSM1_T_WHERE, "   
lt_sl_logsys  TYPE STANDARD TABLE OF RSSM1_T_WHERE, "   
lv_i_distinct  TYPE CHAR30, "   
lt_sl_oltpsource  TYPE STANDARD TABLE OF CHAR30, "   
lt_sl_logdpid  TYPE STANDARD TABLE OF CHAR30, "   
lv_i_single_select  TYPE RS_BOOL, "   
lt_sl_loggrid  TYPE STANDARD TABLE OF RS_BOOL, "   
lv_i_not_exist  TYPE RS_BOOL, "   
lt_sl_infopakid  TYPE STANDARD TABLE OF RS_BOOL, "   
lv_i_use_sl_tabs  TYPE RS_BOOL, "   
lt_sl_uname  TYPE STANDARD TABLE OF RS_BOOL, "   
lv_i_first_rows  TYPE RS_BOOL, "   
lt_sl_variant  TYPE STANDARD TABLE OF RS_BOOL, "   
lv_i_parameter  TYPE RSRAWSTRING. "   

  CALL FUNCTION 'RSSM_RSSELDONE_READ'  "Read RSSELDONE
    EXPORTING
         I_RNR = lv_i_rnr
         I_LNR_MAX = lv_i_lnr_max
         I_ONLY_INFOID = lv_i_only_infoid
         I_T_RNR = lv_i_t_rnr
         I_T_WHERE = lv_i_t_where
         I_DISTINCT = lv_i_distinct
         I_SINGLE_SELECT = lv_i_single_select
         I_NOT_EXIST = lv_i_not_exist
         I_USE_SL_TABS = lv_i_use_sl_tabs
         I_FIRST_ROWS = lv_i_first_rows
         I_PARAMETER = lv_i_parameter
    IMPORTING
         E_S_RSSELDONE = lv_e_s_rsseldone
         E_T_MSG = lv_e_t_msg
         E_RETURN = lv_e_return
    TABLES
         E_T_RSSELDONE = lt_e_t_rsseldone
         SL_TYP = lt_sl_typ
         SL_RNRTYP = lt_sl_rnrtyp
         SL_QUELLE = lt_sl_quelle
         SL_ZIEL = lt_sl_ziel
         SL_RNR = lt_sl_rnr
         SL_DATUM = lt_sl_datum
         SL_ISOURCE = lt_sl_isource
         SL_LOGSYS = lt_sl_logsys
         SL_OLTPSOURCE = lt_sl_oltpsource
         SL_LOGDPID = lt_sl_logdpid
         SL_LOGGRID = lt_sl_loggrid
         SL_INFOPAKID = lt_sl_infopakid
         SL_UNAME = lt_sl_uname
         SL_VARIANT = lt_sl_variant
. " RSSM_RSSELDONE_READ




ABAP code using 7.40 inline data declarations to call FM RSSM_RSSELDONE_READ

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 RNR FROM RSSELDONE INTO @DATA(ld_i_rnr).
 
 
 
 
 
 
DATA(ld_i_only_infoid) = ' '.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!