SAP ISU_CLEAR_STATISTIC_FIELDS Function Module for
ISU_CLEAR_STATISTIC_FIELDS is a standard isu clear statistic fields 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 isu clear statistic fields FM, simply by entering the name ISU_CLEAR_STATISTIC_FIELDS into the relevant SAP transaction such as SE37 or SE38.
Function Group: E70T
Program Name: SAPLE70T
Main Program: SAPLE70T
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_CLEAR_STATISTIC_FIELDS 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 'ISU_CLEAR_STATISTIC_FIELDS'".
EXPORTING
X_TABNAME = "
CHANGING
* XY_EMDST01 = "
* XY_EMDST10 = "
* XY_EMDST11 = "
* XY_EMDST12 = "
* XY_EMDST13 = "
* XY_EMDST50 = "
* XY_EMDST02 = "
* XY_EMDST03 = "
* XY_EMDST04 = "
* XY_EMDST05 = "
* XY_EMDST06 = "
* XY_EMDST07 = "
* XY_EMDST08 = "
* XY_EMDST09 = "
EXCEPTIONS
NO_KRITERIA = 1
IMPORTING Parameters details for ISU_CLEAR_STATISTIC_FIELDS
X_TABNAME -
Data type: DD03L-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISU_CLEAR_STATISTIC_FIELDS
XY_EMDST01 -
Data type: EMDSTAT01Optional: Yes
Call by Reference: Yes
XY_EMDST10 -
Data type: EMDSTAT10Optional: Yes
Call by Reference: Yes
XY_EMDST11 -
Data type: EMDSTAT11Optional: Yes
Call by Reference: Yes
XY_EMDST12 -
Data type: EMDSTAT12Optional: Yes
Call by Reference: Yes
XY_EMDST13 -
Data type: EMDSTAT13Optional: Yes
Call by Reference: Yes
XY_EMDST50 -
Data type: EMDSTAT14Optional: Yes
Call by Reference: Yes
XY_EMDST02 -
Data type: EMDSTAT02Optional: Yes
Call by Reference: Yes
XY_EMDST03 -
Data type: EMDSTAT03Optional: Yes
Call by Reference: Yes
XY_EMDST04 -
Data type: EMDSTAT04Optional: Yes
Call by Reference: Yes
XY_EMDST05 -
Data type: EMDSTAT05Optional: Yes
Call by Reference: Yes
XY_EMDST06 -
Data type: EMDSTAT06Optional: Yes
Call by Reference: Yes
XY_EMDST07 -
Data type: EMDSTAT07Optional: Yes
Call by Reference: Yes
XY_EMDST08 -
Data type: EMDSTAT08Optional: Yes
Call by Reference: Yes
XY_EMDST09 -
Data type: EMDSTAT09Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_KRITERIA -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_CLEAR_STATISTIC_FIELDS 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_x_tabname | TYPE DD03L-TABNAME, " | |||
| lv_xy_emdst01 | TYPE EMDSTAT01, " | |||
| lv_no_kriteria | TYPE EMDSTAT01, " | |||
| lv_xy_emdst10 | TYPE EMDSTAT10, " | |||
| lv_xy_emdst11 | TYPE EMDSTAT11, " | |||
| lv_xy_emdst12 | TYPE EMDSTAT12, " | |||
| lv_xy_emdst13 | TYPE EMDSTAT13, " | |||
| lv_xy_emdst50 | TYPE EMDSTAT14, " | |||
| lv_xy_emdst02 | TYPE EMDSTAT02, " | |||
| lv_xy_emdst03 | TYPE EMDSTAT03, " | |||
| lv_xy_emdst04 | TYPE EMDSTAT04, " | |||
| lv_xy_emdst05 | TYPE EMDSTAT05, " | |||
| lv_xy_emdst06 | TYPE EMDSTAT06, " | |||
| lv_xy_emdst07 | TYPE EMDSTAT07, " | |||
| lv_xy_emdst08 | TYPE EMDSTAT08, " | |||
| lv_xy_emdst09 | TYPE EMDSTAT09. " |
|   CALL FUNCTION 'ISU_CLEAR_STATISTIC_FIELDS' " |
| EXPORTING | ||
| X_TABNAME | = lv_x_tabname | |
| CHANGING | ||
| XY_EMDST01 | = lv_xy_emdst01 | |
| XY_EMDST10 | = lv_xy_emdst10 | |
| XY_EMDST11 | = lv_xy_emdst11 | |
| XY_EMDST12 | = lv_xy_emdst12 | |
| XY_EMDST13 | = lv_xy_emdst13 | |
| XY_EMDST50 | = lv_xy_emdst50 | |
| XY_EMDST02 | = lv_xy_emdst02 | |
| XY_EMDST03 | = lv_xy_emdst03 | |
| XY_EMDST04 | = lv_xy_emdst04 | |
| XY_EMDST05 | = lv_xy_emdst05 | |
| XY_EMDST06 | = lv_xy_emdst06 | |
| XY_EMDST07 | = lv_xy_emdst07 | |
| XY_EMDST08 | = lv_xy_emdst08 | |
| XY_EMDST09 | = lv_xy_emdst09 | |
| EXCEPTIONS | ||
| NO_KRITERIA = 1 | ||
| . " ISU_CLEAR_STATISTIC_FIELDS | ||
ABAP code using 7.40 inline data declarations to call FM ISU_CLEAR_STATISTIC_FIELDS
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 TABNAME FROM DD03L INTO @DATA(ld_x_tabname). | ||||
Search for further information about these or an SAP related objects