SAP ECATT_ECSD_GETLIST Function Module for









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

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



Function ECATT_ECSD_GETLIST 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_ECSD_GETLIST'"
EXPORTING
* IM_NOTEXT = ' ' "
* IM_NO_TADIR = ' ' "
* IM_NOJAVATIMESTAMPS = ' ' "
* IM_GET_ATTRIBUTES_SHORT = 'X' "
* IM_LANGU_ISO = "

TABLES
* IT_SEL_NAME = "
* ET_ATTRIBUTES = "
* ET_ATTRIBUTES_SHORT = "
.



IMPORTING Parameters details for ECATT_ECSD_GETLIST

IM_NOTEXT -

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

IM_NO_TADIR -

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

IM_NOJAVATIMESTAMPS -

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

IM_GET_ATTRIBUTES_SHORT -

Data type: ETONOFF
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IM_LANGU_ISO -

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

TABLES Parameters details for ECATT_ECSD_GETLIST

IT_SEL_NAME -

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

ET_ATTRIBUTES -

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

ET_ATTRIBUTES_SHORT -

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

Copy and paste ABAP code example for ECATT_ECSD_GETLIST 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_im_notext  TYPE ETONOFF, "   SPACE
lt_it_sel_name  TYPE STANDARD TABLE OF ETSELECT_OPTION, "   
lv_im_no_tadir  TYPE ETONOFF, "   SPACE
lt_et_attributes  TYPE STANDARD TABLE OF ETATTR_SD, "   
lt_et_attributes_short  TYPE STANDARD TABLE OF ETATTR_SD_SHORT, "   
lv_im_nojavatimestamps  TYPE ETONOFF, "   SPACE
lv_im_get_attributes_short  TYPE ETONOFF, "   'X'
lv_im_langu_iso  TYPE CHAR2. "   

  CALL FUNCTION 'ECATT_ECSD_GETLIST'  "
    EXPORTING
         IM_NOTEXT = lv_im_notext
         IM_NO_TADIR = lv_im_no_tadir
         IM_NOJAVATIMESTAMPS = lv_im_nojavatimestamps
         IM_GET_ATTRIBUTES_SHORT = lv_im_get_attributes_short
         IM_LANGU_ISO = lv_im_langu_iso
    TABLES
         IT_SEL_NAME = lt_it_sel_name
         ET_ATTRIBUTES = lt_et_attributes
         ET_ATTRIBUTES_SHORT = lt_et_attributes_short
. " ECATT_ECSD_GETLIST




ABAP code using 7.40 inline data declarations to call FM ECATT_ECSD_GETLIST

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_im_notext) = ' '.
 
 
DATA(ld_im_no_tadir) = ' '.
 
 
 
DATA(ld_im_nojavatimestamps) = ' '.
 
DATA(ld_im_get_attributes_short) = 'X'.
 
 


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!