SAP RKC_FCAT_HELP_VALUES_GET Function Module for
RKC_FCAT_HELP_VALUES_GET is a standard rkc fcat help values get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 rkc fcat help values get FM, simply by entering the name RKC_FCAT_HELP_VALUES_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: KXGD
Program Name: SAPLKXGD
Main Program: SAPLKXGD
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RKC_FCAT_HELP_VALUES_GET 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 'RKC_FCAT_HELP_VALUES_GET'".
EXPORTING
I_APPLC = "
* I_SYSTP = 'CUS' "
* I_USAGE_SEL = 'D' "
* I_T_NEW_FIE = "
* I_ONLY_GEN_CHTAB = ' ' "
* I_EIS_NOVAL_TOO = ' ' "
* I_T242B_FIELDS = 'X' "
* I_EIS_CHTAB = ' ' "
* I_FC_NO_TOTALS = ' ' "
CHANGING
* C_FIENM = ' ' "
EXCEPTIONS
SELECTION_ERROR = 1
IMPORTING Parameters details for RKC_FCAT_HELP_VALUES_GET
I_APPLC -
Data type: CGDPAR-APPLCOptional: No
Call by Reference: No ( called with pass by value option)
I_SYSTP -
Data type: CGSPAR-SYSTPDefault: 'CUS'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_USAGE_SEL -
Data type:Default: 'D'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_T_NEW_FIE -
Data type: KCDB_T_PENOptional: Yes
Call by Reference: Yes
I_ONLY_GEN_CHTAB -
Data type: KCDB_BOOLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_EIS_NOVAL_TOO -
Data type: KCDB_BOOLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_T242B_FIELDS -
Data type: KCDB_BOOLDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_EIS_CHTAB -
Data type: KCDB_BOOLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FC_NO_TOTALS -
Data type:Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for RKC_FCAT_HELP_VALUES_GET
C_FIENM -
Data type: KCDB_S_GFIE-FIENMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
SELECTION_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RKC_FCAT_HELP_VALUES_GET 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_c_fienm | TYPE KCDB_S_GFIE-FIENM, " SPACE | |||
| lv_i_applc | TYPE CGDPAR-APPLC, " | |||
| lv_selection_error | TYPE CGDPAR, " | |||
| lv_i_systp | TYPE CGSPAR-SYSTP, " 'CUS' | |||
| lv_i_usage_sel | TYPE CGSPAR, " 'D' | |||
| lv_i_t_new_fie | TYPE KCDB_T_PEN, " | |||
| lv_i_only_gen_chtab | TYPE KCDB_BOOL, " ' ' | |||
| lv_i_eis_noval_too | TYPE KCDB_BOOL, " ' ' | |||
| lv_i_t242b_fields | TYPE KCDB_BOOL, " 'X' | |||
| lv_i_eis_chtab | TYPE KCDB_BOOL, " ' ' | |||
| lv_i_fc_no_totals | TYPE KCDB_BOOL. " ' ' |
|   CALL FUNCTION 'RKC_FCAT_HELP_VALUES_GET' " |
| EXPORTING | ||
| I_APPLC | = lv_i_applc | |
| I_SYSTP | = lv_i_systp | |
| I_USAGE_SEL | = lv_i_usage_sel | |
| I_T_NEW_FIE | = lv_i_t_new_fie | |
| I_ONLY_GEN_CHTAB | = lv_i_only_gen_chtab | |
| I_EIS_NOVAL_TOO | = lv_i_eis_noval_too | |
| I_T242B_FIELDS | = lv_i_t242b_fields | |
| I_EIS_CHTAB | = lv_i_eis_chtab | |
| I_FC_NO_TOTALS | = lv_i_fc_no_totals | |
| CHANGING | ||
| C_FIENM | = lv_c_fienm | |
| EXCEPTIONS | ||
| SELECTION_ERROR = 1 | ||
| . " RKC_FCAT_HELP_VALUES_GET | ||
ABAP code using 7.40 inline data declarations to call FM RKC_FCAT_HELP_VALUES_GET
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 FIENM FROM KCDB_S_GFIE INTO @DATA(ld_c_fienm). | ||||
| DATA(ld_c_fienm) | = ' '. | |||
| "SELECT single APPLC FROM CGDPAR INTO @DATA(ld_i_applc). | ||||
| "SELECT single SYSTP FROM CGSPAR INTO @DATA(ld_i_systp). | ||||
| DATA(ld_i_systp) | = 'CUS'. | |||
| DATA(ld_i_usage_sel) | = 'D'. | |||
| DATA(ld_i_only_gen_chtab) | = ' '. | |||
| DATA(ld_i_eis_noval_too) | = ' '. | |||
| DATA(ld_i_t242b_fields) | = 'X'. | |||
| DATA(ld_i_eis_chtab) | = ' '. | |||
| DATA(ld_i_fc_no_totals) | = ' '. | |||
Search for further information about these or an SAP related objects