SAP RSSM_SDL_INTERNAL_CHECK_SEL Function Module for Internal Comparison of 2 Selektions with Overlapp









RSSM_SDL_INTERNAL_CHECK_SEL is a standard rssm sdl internal check sel SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Internal Comparison of 2 Selektions with Overlapp 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 sdl internal check sel FM, simply by entering the name RSSM_SDL_INTERNAL_CHECK_SEL into the relevant SAP transaction such as SE37 or SE38.

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



Function RSSM_SDL_INTERNAL_CHECK_SEL 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_SDL_INTERNAL_CHECK_SEL'"Internal Comparison of 2 Selektions with Overlapp
EXPORTING
L_OBER = "
L_LOOPRNR = "
L_RNR = "
* L_COMPFLAG = ' ' "
* L_AGGRFLAG = ' ' "
* L_EQUITY = ' ' "

CHANGING
* L_LOOPRNR_SID = ' ' "
* L_RNR_SID = ' ' "

TABLES
* E_T_RSREQUESTDEL = "
I_T_SELE = "
I_T_SELE1 = "
* E_T_REQDEL = "

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for RSSM_SDL_INTERNAL_CHECK_SEL

L_OBER -

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

L_LOOPRNR -

Data type: RSREQDONE-RNR
Optional: No
Call by Reference: Yes

L_RNR -

Data type: RSREQDONE-RNR
Optional: No
Call by Reference: Yes

L_COMPFLAG -

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

L_AGGRFLAG -

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

L_EQUITY -

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

CHANGING Parameters details for RSSM_SDL_INTERNAL_CHECK_SEL

L_LOOPRNR_SID -

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

L_RNR_SID -

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

TABLES Parameters details for RSSM_SDL_INTERNAL_CHECK_SEL

E_T_RSREQUESTDEL -

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

I_T_SELE -

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

I_T_SELE1 -

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

E_T_REQDEL -

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

EXCEPTIONS details

ERROR -

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

Copy and paste ABAP code example for RSSM_SDL_INTERNAL_CHECK_SEL 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_error  TYPE STRING, "   
lv_l_ober  TYPE CHAR1, "   
lv_l_looprnr_sid  TYPE CHAR1, "   SPACE
lt_e_t_rsrequestdel  TYPE STANDARD TABLE OF RSREQDELSTRUC, "   
lt_i_t_sele  TYPE STANDARD TABLE OF RSSM_T_SELE, "   
lv_l_looprnr  TYPE RSREQDONE-RNR, "   
lv_l_rnr_sid  TYPE RSREQDONE, "   SPACE
lv_l_rnr  TYPE RSREQDONE-RNR, "   
lt_i_t_sele1  TYPE STANDARD TABLE OF RSSM_T_SELE, "   
lt_e_t_reqdel  TYPE STANDARD TABLE OF RSSM_T_REQDEL, "   
lv_l_compflag  TYPE CHAR1, "   SPACE
lv_l_aggrflag  TYPE CHAR1, "   SPACE
lv_l_equity  TYPE CHAR1. "   SPACE

  CALL FUNCTION 'RSSM_SDL_INTERNAL_CHECK_SEL'  "Internal Comparison of 2 Selektions with Overlapp
    EXPORTING
         L_OBER = lv_l_ober
         L_LOOPRNR = lv_l_looprnr
         L_RNR = lv_l_rnr
         L_COMPFLAG = lv_l_compflag
         L_AGGRFLAG = lv_l_aggrflag
         L_EQUITY = lv_l_equity
    CHANGING
         L_LOOPRNR_SID = lv_l_looprnr_sid
         L_RNR_SID = lv_l_rnr_sid
    TABLES
         E_T_RSREQUESTDEL = lt_e_t_rsrequestdel
         I_T_SELE = lt_i_t_sele
         I_T_SELE1 = lt_i_t_sele1
         E_T_REQDEL = lt_e_t_reqdel
    EXCEPTIONS
        ERROR = 1
. " RSSM_SDL_INTERNAL_CHECK_SEL




ABAP code using 7.40 inline data declarations to call FM RSSM_SDL_INTERNAL_CHECK_SEL

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.

 
 
DATA(ld_l_looprnr_sid) = ' '.
 
 
 
"SELECT single RNR FROM RSREQDONE INTO @DATA(ld_l_looprnr).
 
DATA(ld_l_rnr_sid) = ' '.
 
"SELECT single RNR FROM RSREQDONE INTO @DATA(ld_l_rnr).
 
 
 
DATA(ld_l_compflag) = ' '.
 
DATA(ld_l_aggrflag) = ' '.
 
DATA(ld_l_equity) = ' '.
 


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!