SAP ISU_EDM_PROFILE_SELECT_MISC Function Module for EDM: Read Profile Data
ISU_EDM_PROFILE_SELECT_MISC is a standard isu edm profile select misc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for EDM: Read Profile Data processing and below is the pattern details for this FM, 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 profile select misc FM, simply by entering the name ISU_EDM_PROFILE_SELECT_MISC into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEDM_PROFILE
Program Name: SAPLEEDM_PROFILE
Main Program: SAPLEEDM_PROFILE
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_EDM_PROFILE_SELECT_MISC 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_PROFILE_SELECT_MISC'"EDM: Read Profile Data.
EXPORTING
X_DATEFROM = "Day of Profile Values
* X_FILL_PROFVALUES = ' ' "
* X_READ_TMP_PROFILE = ' ' "
* X_OPENING_INTSIZEID = ' ' "Use Other Interval Length
* X_OPENING_MASS = ' ' "Use Other Unit of Measurement
* X_DAY_PROF_TIME_MODE = '2' "Day Value Profile - Time Mode (Local, UTC, Constant)
* X_DAY_PROF_NO_OFFSET = ' ' "Day Value Profile - Ignore Profile Offset
* X_WORK_MODE = ' ' "Processing Mode (1 = Display, 2 = Change, 3 = Create...)
X_TIMEFROM = "Profile Value Time
X_DATETO = "Day of Profile Values
X_TIMETO = "Profile Value Time
* X_TIMEZONE = 'UTC' "Time Zone
* X_READ_VALUES = ' ' "
* X_READ_STATUS = ' ' "
* X_READ_STATUSHIST = ' ' "
* X_READ_VERSION = ' ' "
CHANGING
XY_PROFILE = "
EXCEPTIONS
NOT_FOUND = 1 VALUES_NOT_FOUND = 2 STATUS_NOT_FOUND = 3 STATUSHIST_NOT_FOUND = 4 VERSION_NOT_FOUND = 5 NOT_CUSTOMIZED = 6 CONVERSION_NOT_ALLOWED = 7 INVALID_TIMERANGE = 8 INVALID_DATA = 9
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLEEDM_PROFILE_001 Status Determination for Conversion of Interval Length of Profile
IMPORTING Parameters details for ISU_EDM_PROFILE_SELECT_MISC
X_DATEFROM - Day of Profile Values
Data type: PROFVALDAYOptional: No
Call by Reference: Yes
X_FILL_PROFVALUES -
Data type: KENNZXDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_READ_TMP_PROFILE -
Data type: KENNZXDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_OPENING_INTSIZEID - Use Other Interval Length
Data type: INTSIZEIDDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_OPENING_MASS - Use Other Unit of Measurement
Data type: E_MASSDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_DAY_PROF_TIME_MODE - Day Value Profile - Time Mode (Local, UTC, Constant)
Data type: CHAR1Default: '2'
Optional: Yes
Call by Reference: Yes
X_DAY_PROF_NO_OFFSET - Day Value Profile - Ignore Profile Offset
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: Yes
X_WORK_MODE - Processing Mode (1 = Display, 2 = Change, 3 = Create...)
Data type: E_MODEDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_TIMEFROM - Profile Value Time
Data type: PROFVALTIMEOptional: No
Call by Reference: Yes
X_DATETO - Day of Profile Values
Data type: PROFVALDAYOptional: No
Call by Reference: Yes
X_TIMETO - Profile Value Time
Data type: PROFVALTIMEOptional: No
Call by Reference: Yes
X_TIMEZONE - Time Zone
Data type: TIMEZONEDefault: 'UTC'
Optional: Yes
Call by Reference: Yes
X_READ_VALUES -
Data type: KENNZXDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_READ_STATUS -
Data type: KENNZXDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_READ_STATUSHIST -
Data type: KENNZXDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_READ_VERSION -
Data type: KENNZXDefault: SPACE
Optional: Yes
Call by Reference: Yes
CHANGING Parameters details for ISU_EDM_PROFILE_SELECT_MISC
XY_PROFILE -
Data type: EPROFILEOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND - No profile found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
VALUES_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
STATUS_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
STATUSHIST_NOT_FOUND - No Status History Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
VERSION_NOT_FOUND - No Version Data Found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_CUSTOMIZED - Error in customizing
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CONVERSION_NOT_ALLOWED -
Data type:Optional: No
Call by Reference: Yes
INVALID_TIMERANGE -
Data type:Optional: No
Call by Reference: Yes
INVALID_DATA -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_EDM_PROFILE_SELECT_MISC 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_not_found | TYPE STRING, " | |||
| lv_xy_profile | TYPE EPROFILE, " | |||
| lv_x_datefrom | TYPE PROFVALDAY, " | |||
| lv_x_fill_profvalues | TYPE KENNZX, " SPACE | |||
| lv_x_read_tmp_profile | TYPE KENNZX, " SPACE | |||
| lv_x_opening_intsizeid | TYPE INTSIZEID, " SPACE | |||
| lv_x_opening_mass | TYPE E_MASS, " SPACE | |||
| lv_x_day_prof_time_mode | TYPE CHAR1, " '2' | |||
| lv_x_day_prof_no_offset | TYPE CHAR1, " SPACE | |||
| lv_x_work_mode | TYPE E_MODE, " SPACE | |||
| lv_x_timefrom | TYPE PROFVALTIME, " | |||
| lv_values_not_found | TYPE PROFVALTIME, " | |||
| lv_x_dateto | TYPE PROFVALDAY, " | |||
| lv_status_not_found | TYPE PROFVALDAY, " | |||
| lv_x_timeto | TYPE PROFVALTIME, " | |||
| lv_statushist_not_found | TYPE PROFVALTIME, " | |||
| lv_x_timezone | TYPE TIMEZONE, " 'UTC' | |||
| lv_version_not_found | TYPE TIMEZONE, " | |||
| lv_x_read_values | TYPE KENNZX, " SPACE | |||
| lv_not_customized | TYPE KENNZX, " | |||
| lv_x_read_status | TYPE KENNZX, " SPACE | |||
| lv_conversion_not_allowed | TYPE KENNZX, " | |||
| lv_invalid_timerange | TYPE KENNZX, " | |||
| lv_x_read_statushist | TYPE KENNZX, " SPACE | |||
| lv_invalid_data | TYPE KENNZX, " | |||
| lv_x_read_version | TYPE KENNZX. " SPACE |
|   CALL FUNCTION 'ISU_EDM_PROFILE_SELECT_MISC' "EDM: Read Profile Data |
| EXPORTING | ||
| X_DATEFROM | = lv_x_datefrom | |
| X_FILL_PROFVALUES | = lv_x_fill_profvalues | |
| X_READ_TMP_PROFILE | = lv_x_read_tmp_profile | |
| X_OPENING_INTSIZEID | = lv_x_opening_intsizeid | |
| X_OPENING_MASS | = lv_x_opening_mass | |
| X_DAY_PROF_TIME_MODE | = lv_x_day_prof_time_mode | |
| X_DAY_PROF_NO_OFFSET | = lv_x_day_prof_no_offset | |
| X_WORK_MODE | = lv_x_work_mode | |
| X_TIMEFROM | = lv_x_timefrom | |
| X_DATETO | = lv_x_dateto | |
| X_TIMETO | = lv_x_timeto | |
| X_TIMEZONE | = lv_x_timezone | |
| X_READ_VALUES | = lv_x_read_values | |
| X_READ_STATUS | = lv_x_read_status | |
| X_READ_STATUSHIST | = lv_x_read_statushist | |
| X_READ_VERSION | = lv_x_read_version | |
| CHANGING | ||
| XY_PROFILE | = lv_xy_profile | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| VALUES_NOT_FOUND = 2 | ||
| STATUS_NOT_FOUND = 3 | ||
| STATUSHIST_NOT_FOUND = 4 | ||
| VERSION_NOT_FOUND = 5 | ||
| NOT_CUSTOMIZED = 6 | ||
| CONVERSION_NOT_ALLOWED = 7 | ||
| INVALID_TIMERANGE = 8 | ||
| INVALID_DATA = 9 | ||
| . " ISU_EDM_PROFILE_SELECT_MISC | ||
ABAP code using 7.40 inline data declarations to call FM ISU_EDM_PROFILE_SELECT_MISC
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_x_fill_profvalues) | = ' '. | |||
| DATA(ld_x_read_tmp_profile) | = ' '. | |||
| DATA(ld_x_opening_intsizeid) | = ' '. | |||
| DATA(ld_x_opening_mass) | = ' '. | |||
| DATA(ld_x_day_prof_time_mode) | = '2'. | |||
| DATA(ld_x_day_prof_no_offset) | = ' '. | |||
| DATA(ld_x_work_mode) | = ' '. | |||
| DATA(ld_x_timezone) | = 'UTC'. | |||
| DATA(ld_x_read_values) | = ' '. | |||
| DATA(ld_x_read_status) | = ' '. | |||
| DATA(ld_x_read_statushist) | = ' '. | |||
| DATA(ld_x_read_version) | = ' '. | |||
Search for further information about these or an SAP related objects