SAP RS_DME_ADA_GEN_CIS_30A Function Module for Generation of candidate itemsets
RS_DME_ADA_GEN_CIS_30A is a standard rs dme ada gen cis 30a SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Generation of candidate itemsets 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 rs dme ada gen cis 30a FM, simply by entering the name RS_DME_ADA_GEN_CIS_30A into the relevant SAP transaction such as SE37 or SE38.
Function Group: RS_DME_ASSO_DISC_AP_30A
Program Name: SAPLRS_DME_ASSO_DISC_AP_30A
Main Program: SAPLRS_DME_ASSO_DISC_AP_30A
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RS_DME_ADA_GEN_CIS_30A 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 'RS_DME_ADA_GEN_CIS_30A'"Generation of candidate itemsets.
EXPORTING
IV_CURR_ORDER = "Current order of item sets
IV_MODEL_ID = "Analytical Mining Model GUID
TABLES
IT_LIS_CURR = "Large Itemsets
IT_LIS_CURR_DET = "LIS detail
ET_LIS_NEXT = "Large Itemsets
ET_LIS_NEXT_DET = "LIS detail
ET_RETURN = "Return parameter
IMPORTING Parameters details for RS_DME_ADA_GEN_CIS_30A
IV_CURR_ORDER - Current order of item sets
Data type: RSDMEA_MAX_ORDEROptional: No
Call by Reference: No ( called with pass by value option)
IV_MODEL_ID - Analytical Mining Model GUID
Data type: RSDMEM_MODELOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RS_DME_ADA_GEN_CIS_30A
IT_LIS_CURR - Large Itemsets
Data type: RSDMSA_LISOptional: No
Call by Reference: No ( called with pass by value option)
IT_LIS_CURR_DET - LIS detail
Data type: RSDMSA_LIS_DETOptional: No
Call by Reference: No ( called with pass by value option)
ET_LIS_NEXT - Large Itemsets
Data type: RSDMSA_LISOptional: No
Call by Reference: No ( called with pass by value option)
ET_LIS_NEXT_DET - LIS detail
Data type: RSDMSA_LIS_DETOptional: No
Call by Reference: No ( called with pass by value option)
ET_RETURN - Return parameter
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RS_DME_ADA_GEN_CIS_30A 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: | ||||
| lt_it_lis_curr | TYPE STANDARD TABLE OF RSDMSA_LIS, " | |||
| lv_iv_curr_order | TYPE RSDMEA_MAX_ORDER, " | |||
| lv_iv_model_id | TYPE RSDMEM_MODEL, " | |||
| lt_it_lis_curr_det | TYPE STANDARD TABLE OF RSDMSA_LIS_DET, " | |||
| lt_et_lis_next | TYPE STANDARD TABLE OF RSDMSA_LIS, " | |||
| lt_et_lis_next_det | TYPE STANDARD TABLE OF RSDMSA_LIS_DET, " | |||
| lt_et_return | TYPE STANDARD TABLE OF BAPIRET2. " |
|   CALL FUNCTION 'RS_DME_ADA_GEN_CIS_30A' "Generation of candidate itemsets |
| EXPORTING | ||
| IV_CURR_ORDER | = lv_iv_curr_order | |
| IV_MODEL_ID | = lv_iv_model_id | |
| TABLES | ||
| IT_LIS_CURR | = lt_it_lis_curr | |
| IT_LIS_CURR_DET | = lt_it_lis_curr_det | |
| ET_LIS_NEXT | = lt_et_lis_next | |
| ET_LIS_NEXT_DET | = lt_et_lis_next_det | |
| ET_RETURN | = lt_et_return | |
| . " RS_DME_ADA_GEN_CIS_30A | ||
ABAP code using 7.40 inline data declarations to call FM RS_DME_ADA_GEN_CIS_30A
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.Search for further information about these or an SAP related objects