SAP RSDD_INFO_REQUID_DELETE Function Module for Deleting the Entries for a REQUEST in the InfoCube
RSDD_INFO_REQUID_DELETE is a standard rsdd info requid delete SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Deleting the Entries for a REQUEST in the InfoCube 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 rsdd info requid delete FM, simply by entering the name RSDD_INFO_REQUID_DELETE into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSDDWRITE
Program Name: SAPLRSDDWRITE
Main Program: SAPLRSDDWRITE
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSDD_INFO_REQUID_DELETE 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 'RSDD_INFO_REQUID_DELETE'"Deleting the Entries for a REQUEST in the InfoCube.
EXPORTING
I_INFOCUBE = "
* I_REQUID = "
* I_T_REQUID = "Request table
IMPORTING
E_REQUID_SID = "
E_FACT_COUNT = "
E_T_MSG = "BW: Table with Messages (Application Log)
EXCEPTIONS
INFOCUBE_NOT_FOUND = 1 SID_NOT_FOUND = 2 DPA_DIM_NOT_FOUND = 3 ERROR_DEL_REQUID_IN_FACT = 4 X_MESSAGE = 5 INHERITED_ERROR = 6 INVALID_TYPE = 7
IMPORTING Parameters details for RSDD_INFO_REQUID_DELETE
I_INFOCUBE -
Data type: RSD_INFOCUBEOptional: No
Call by Reference: No ( called with pass by value option)
I_REQUID -
Data type: RSRNR-RNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_T_REQUID - Request table
Data type: RSSM_T_RNROptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RSDD_INFO_REQUID_DELETE
E_REQUID_SID -
Data type: RSD_SIDOptional: No
Call by Reference: No ( called with pass by value option)
E_FACT_COUNT -
Data type: RSDW_REC_COUNTOptional: No
Call by Reference: No ( called with pass by value option)
E_T_MSG - BW: Table with Messages (Application Log)
Data type: RS_T_MSGOptional: No
Call by Reference: Yes
EXCEPTIONS details
INFOCUBE_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SID_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DPA_DIM_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ERROR_DEL_REQUID_IN_FACT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_MESSAGE -
Data type:Optional: No
Call by Reference: Yes
INHERITED_ERROR -
Data type:Optional: No
Call by Reference: Yes
INVALID_TYPE -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RSDD_INFO_REQUID_DELETE 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_infocube | TYPE RSD_INFOCUBE, " | |||
| lv_e_requid_sid | TYPE RSD_SID, " | |||
| lv_infocube_not_found | TYPE RSD_SID, " | |||
| lv_i_requid | TYPE RSRNR-RNR, " | |||
| lv_e_fact_count | TYPE RSDW_REC_COUNT, " | |||
| lv_sid_not_found | TYPE RSDW_REC_COUNT, " | |||
| lv_e_t_msg | TYPE RS_T_MSG, " | |||
| lv_i_t_requid | TYPE RSSM_T_RNR, " | |||
| lv_dpa_dim_not_found | TYPE RSSM_T_RNR, " | |||
| lv_error_del_requid_in_fact | TYPE RSSM_T_RNR, " | |||
| lv_x_message | TYPE RSSM_T_RNR, " | |||
| lv_inherited_error | TYPE RSSM_T_RNR, " | |||
| lv_invalid_type | TYPE RSSM_T_RNR. " |
|   CALL FUNCTION 'RSDD_INFO_REQUID_DELETE' "Deleting the Entries for a REQUEST in the InfoCube |
| EXPORTING | ||
| I_INFOCUBE | = lv_i_infocube | |
| I_REQUID | = lv_i_requid | |
| I_T_REQUID | = lv_i_t_requid | |
| IMPORTING | ||
| E_REQUID_SID | = lv_e_requid_sid | |
| E_FACT_COUNT | = lv_e_fact_count | |
| E_T_MSG | = lv_e_t_msg | |
| EXCEPTIONS | ||
| INFOCUBE_NOT_FOUND = 1 | ||
| SID_NOT_FOUND = 2 | ||
| DPA_DIM_NOT_FOUND = 3 | ||
| ERROR_DEL_REQUID_IN_FACT = 4 | ||
| X_MESSAGE = 5 | ||
| INHERITED_ERROR = 6 | ||
| INVALID_TYPE = 7 | ||
| . " RSDD_INFO_REQUID_DELETE | ||
ABAP code using 7.40 inline data declarations to call FM RSDD_INFO_REQUID_DELETE
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 RSRNR INTO @DATA(ld_i_requid). | ||||
Search for further information about these or an SAP related objects