SAP RSDRC_CONVERT_RANGES_TO_SELC Function Module for Converts Ranges to SELC Format









RSDRC_CONVERT_RANGES_TO_SELC is a standard rsdrc convert ranges to selc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Converts Ranges to SELC Format 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 rsdrc convert ranges to selc FM, simply by entering the name RSDRC_CONVERT_RANGES_TO_SELC into the relevant SAP transaction such as SE37 or SE38.

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



Function RSDRC_CONVERT_RANGES_TO_SELC 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 'RSDRC_CONVERT_RANGES_TO_SELC'"Converts Ranges to SELC Format
EXPORTING
* I_T_RANGE = "Selection Conditions Connected with AND
* I_TX_RANGETAB = "Lists Connected with AND from OR Conditions
* I_MOSTRECENT = RS_C_FALSE "Read Master Data with 'Most Recent'?
* I_TH_DTA_PRO = "Hashed COB_PRO/DTA_PRO of InfoProvider

IMPORTING
E_T_SELC = "
.



IMPORTING Parameters details for RSDRC_CONVERT_RANGES_TO_SELC

I_T_RANGE - Selection Conditions Connected with AND

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

I_TX_RANGETAB - Lists Connected with AND from OR Conditions

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

I_MOSTRECENT - Read Master Data with 'Most Recent'?

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

I_TH_DTA_PRO - Hashed COB_PRO/DTA_PRO of InfoProvider

Data type: CL_RSDRV_DTA_BUFFER=>TN_TH_DTA_PRO
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for RSDRC_CONVERT_RANGES_TO_SELC

E_T_SELC -

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

Copy and paste ABAP code example for RSDRC_CONVERT_RANGES_TO_SELC 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_e_t_selc  TYPE RSDRC_T_SELC, "   
lv_i_t_range  TYPE RSDRI_T_RANGE, "   
lv_i_tx_rangetab  TYPE RSDRI_TX_RANGETAB, "   
lv_i_mostrecent  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_th_dta_pro  TYPE CL_RSDRV_DTA_BUFFER=>TN_TH_DTA_PRO. "   

  CALL FUNCTION 'RSDRC_CONVERT_RANGES_TO_SELC'  "Converts Ranges to SELC Format
    EXPORTING
         I_T_RANGE = lv_i_t_range
         I_TX_RANGETAB = lv_i_tx_rangetab
         I_MOSTRECENT = lv_i_mostrecent
         I_TH_DTA_PRO = lv_i_th_dta_pro
    IMPORTING
         E_T_SELC = lv_e_t_selc
. " RSDRC_CONVERT_RANGES_TO_SELC




ABAP code using 7.40 inline data declarations to call FM RSDRC_CONVERT_RANGES_TO_SELC

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_i_mostrecent) = RS_C_FALSE.
 
 


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!