SAP ECATT_RFC_VALUE_HELP Function Module for









ECATT_RFC_VALUE_HELP is a standard ecatt rfc value help 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 ecatt rfc value help FM, simply by entering the name ECATT_RFC_VALUE_HELP into the relevant SAP transaction such as SE37 or SE38.

Function Group: ECATT_REPOSITORY
Program Name: SAPLECATT_REPOSITORY
Main Program: SAPLECATT_REPOSITORY
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function ECATT_RFC_VALUE_HELP 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 'ECATT_RFC_VALUE_HELP'"
EXPORTING
* SEARCHHELP = "
* VALUE = "
* TABNAME = "
* FIELDNAME = "
* MULTIPLE_CHOICE = "
* DISPLAY = "
* SUPPRESS_RECORDLIST = "

IMPORTING
USER_RESET = "

TABLES
RETURN_TAB = "

EXCEPTIONS
FIELD_NOT_FOUND = 1 NO_HELP_FOR_FIELD = 2 INCONSISTENT_HELP = 3 NO_VALUES_FOUND = 4
.



IMPORTING Parameters details for ECATT_RFC_VALUE_HELP

SEARCHHELP -

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

VALUE -

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

TABNAME -

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

FIELDNAME -

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

MULTIPLE_CHOICE -

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

DISPLAY -

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

SUPPRESS_RECORDLIST -

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

EXPORTING Parameters details for ECATT_RFC_VALUE_HELP

USER_RESET -

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

TABLES Parameters details for ECATT_RFC_VALUE_HELP

RETURN_TAB -

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

EXCEPTIONS details

FIELD_NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

NO_HELP_FOR_FIELD -

Data type:
Optional: No
Call by Reference: Yes

INCONSISTENT_HELP -

Data type:
Optional: No
Call by Reference: Yes

NO_VALUES_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ECATT_RFC_VALUE_HELP 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_return_tab  TYPE STANDARD TABLE OF DDSHRETVAL, "   
lv_searchhelp  TYPE SHLPNAME, "   
lv_user_reset  TYPE CHAR1, "   
lv_field_not_found  TYPE CHAR1, "   
lv_value  TYPE HELP_INFO-FLDVALUE, "   
lv_no_help_for_field  TYPE HELP_INFO, "   
lv_tabname  TYPE DFIES-TABNAME, "   
lv_inconsistent_help  TYPE DFIES, "   
lv_fieldname  TYPE DFIES-FIELDNAME, "   
lv_no_values_found  TYPE DFIES, "   
lv_multiple_choice  TYPE DDBOOL_D, "   
lv_display  TYPE DDBOOL_D, "   
lv_suppress_recordlist  TYPE DDSHF4CTRL-HIDE_LIST. "   

  CALL FUNCTION 'ECATT_RFC_VALUE_HELP'  "
    EXPORTING
         SEARCHHELP = lv_searchhelp
         VALUE = lv_value
         TABNAME = lv_tabname
         FIELDNAME = lv_fieldname
         MULTIPLE_CHOICE = lv_multiple_choice
         DISPLAY = lv_display
         SUPPRESS_RECORDLIST = lv_suppress_recordlist
    IMPORTING
         USER_RESET = lv_user_reset
    TABLES
         RETURN_TAB = lt_return_tab
    EXCEPTIONS
        FIELD_NOT_FOUND = 1
        NO_HELP_FOR_FIELD = 2
        INCONSISTENT_HELP = 3
        NO_VALUES_FOUND = 4
. " ECATT_RFC_VALUE_HELP




ABAP code using 7.40 inline data declarations to call FM ECATT_RFC_VALUE_HELP

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 FLDVALUE FROM HELP_INFO INTO @DATA(ld_value).
 
 
"SELECT single TABNAME FROM DFIES INTO @DATA(ld_tabname).
 
 
"SELECT single FIELDNAME FROM DFIES INTO @DATA(ld_fieldname).
 
 
 
 
"SELECT single HIDE_LIST FROM DDSHF4CTRL INTO @DATA(ld_suppress_recordlist).
 


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!