SAP ISU_EDM_CONS_CHECK_SAMPLE_E Function Module for
ISU_EDM_CONS_CHECK_SAMPLE_E is a standard isu edm cons check sample e 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 edm cons check sample e FM, simply by entering the name ISU_EDM_CONS_CHECK_SAMPLE_E into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEDM_PROF_CONSISTENT_CHECK
Program Name: SAPLEEDM_PROF_CONSISTENT_CHECK
Main Program: SAPLEEDM_PROF_CONSISTENT_CHECK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_EDM_CONS_CHECK_SAMPLE_E 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_EDM_CONS_CHECK_SAMPLE_E'".
EXPORTING
X_PROFVALUES_OLD = "
X_CUSTSTATUS = "
X_PROFSTATUS_OLD = "
X_PROFILE_NUMBER = "
X_PROFHEAD_DATA = "
X_PROFVALUES = "
X_PROFSTATUS = "
X_FL_ACTION_ERROR = "
X_ERRORCODE = "
X_ATTRIBUTES = "
IMPORTING Parameters details for ISU_EDM_CONS_CHECK_SAMPLE_E
X_PROFVALUES_OLD -
Data type: TEPROFVALUESOptional: No
Call by Reference: Yes
X_CUSTSTATUS -
Data type: TEPROFVALSTAT_STATOptional: No
Call by Reference: Yes
X_PROFSTATUS_OLD -
Data type: TEPROFSTATUSOptional: No
Call by Reference: Yes
X_PROFILE_NUMBER -
Data type: E_PROFILEOptional: No
Call by Reference: Yes
X_PROFHEAD_DATA -
Data type: EPROFHEAD_DATAOptional: No
Call by Reference: Yes
X_PROFVALUES -
Data type: TEPROFVALUESOptional: No
Call by Reference: Yes
X_PROFSTATUS -
Data type: TEPROFSTATUSOptional: No
Call by Reference: Yes
X_FL_ACTION_ERROR -
Data type: E_FL_ACTIONOptional: No
Call by Reference: Yes
X_ERRORCODE -
Data type: TEERRORCODEOptional: No
Call by Reference: Yes
X_ATTRIBUTES -
Data type: TEEDMCONSATTRIBUTESOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_EDM_CONS_CHECK_SAMPLE_E 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_profvalues_old | TYPE TEPROFVALUES, " | |||
| lv_x_custstatus | TYPE TEPROFVALSTAT_STAT, " | |||
| lv_x_profstatus_old | TYPE TEPROFSTATUS, " | |||
| lv_x_profile_number | TYPE E_PROFILE, " | |||
| lv_x_profhead_data | TYPE EPROFHEAD_DATA, " | |||
| lv_x_profvalues | TYPE TEPROFVALUES, " | |||
| lv_x_profstatus | TYPE TEPROFSTATUS, " | |||
| lv_x_fl_action_error | TYPE E_FL_ACTION, " | |||
| lv_x_errorcode | TYPE TEERRORCODE, " | |||
| lv_x_attributes | TYPE TEEDMCONSATTRIBUTES. " |
|   CALL FUNCTION 'ISU_EDM_CONS_CHECK_SAMPLE_E' " |
| EXPORTING | ||
| X_PROFVALUES_OLD | = lv_x_profvalues_old | |
| X_CUSTSTATUS | = lv_x_custstatus | |
| X_PROFSTATUS_OLD | = lv_x_profstatus_old | |
| X_PROFILE_NUMBER | = lv_x_profile_number | |
| X_PROFHEAD_DATA | = lv_x_profhead_data | |
| X_PROFVALUES | = lv_x_profvalues | |
| X_PROFSTATUS | = lv_x_profstatus | |
| X_FL_ACTION_ERROR | = lv_x_fl_action_error | |
| X_ERRORCODE | = lv_x_errorcode | |
| X_ATTRIBUTES | = lv_x_attributes | |
| . " ISU_EDM_CONS_CHECK_SAMPLE_E | ||
ABAP code using 7.40 inline data declarations to call FM ISU_EDM_CONS_CHECK_SAMPLE_E
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