SAP ISU_PROFILE_PUT_EPROFVAL15 Function Module for Write Profile Values with Interval Length 15 Minutes
ISU_PROFILE_PUT_EPROFVAL15 is a standard isu profile put eprofval15 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Write Profile Values with Interval Length 15 Minutes 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 profile put eprofval15 FM, simply by entering the name ISU_PROFILE_PUT_EPROFVAL15 into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEDM_PROFILE_MISC
Program Name: SAPLEEDM_PROFILE_MISC
Main Program: SAPLEEDM_PROFILE_MISC
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_PROFILE_PUT_EPROFVAL15 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_PROFILE_PUT_EPROFVAL15'"Write Profile Values with Interval Length 15 Minutes.
EXPORTING
X_PROFILENR = "Number of EDM Profile
* X_UPD_TMP_DATA = ' ' "
X_DATE_FROM = "
X_TIME_FROM = "
X_DATE_TO = "
X_TIME_TO = "
X_UPD_MODE = "Data: Processing status
X_INTSIZEID = "Identification of Interval Size
* X_UPD_ONLINE = 'X' "Update online
X_VALUES = "Table of Profile Values of Profile (Sorted)
CHANGING
XY_REF_DATA_DB = "Database data
XY_REF_DATA_UPDATE = "Data To Be Changed
XY_REF_DATA_INSERT = "New data
XY_REF_DATA_DELETE = "Data to be deleted
EXCEPTIONS
NOT_CUSTOMIZED = 1
IMPORTING Parameters details for ISU_PROFILE_PUT_EPROFVAL15
X_PROFILENR - Number of EDM Profile
Data type: E_PROFILEOptional: No
Call by Reference: Yes
X_UPD_TMP_DATA -
Data type: KENNZXDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_DATE_FROM -
Data type: PROFVALDAYOptional: No
Call by Reference: Yes
X_TIME_FROM -
Data type: PROFTIMEFROMOptional: No
Call by Reference: Yes
X_DATE_TO -
Data type: PROFVALDAYOptional: No
Call by Reference: Yes
X_TIME_TO -
Data type: PROFTIMETOOptional: No
Call by Reference: Yes
X_UPD_MODE - Data: Processing status
Data type: REGEN-UPD_MODEOptional: No
Call by Reference: Yes
X_INTSIZEID - Identification of Interval Size
Data type: INTSIZEIDOptional: No
Call by Reference: Yes
X_UPD_ONLINE - Update online
Data type: REGEN-UPD_ONLINEDefault: 'X'
Optional: Yes
Call by Reference: Yes
X_VALUES - Table of Profile Values of Profile (Sorted)
Data type: TEPROFVALUES_SORTEDOptional: No
Call by Reference: Yes
CHANGING Parameters details for ISU_PROFILE_PUT_EPROFVAL15
XY_REF_DATA_DB - Database data
Data type: DATAOptional: No
Call by Reference: Yes
XY_REF_DATA_UPDATE - Data To Be Changed
Data type: DATAOptional: No
Call by Reference: Yes
XY_REF_DATA_INSERT - New data
Data type: DATAOptional: No
Call by Reference: Yes
XY_REF_DATA_DELETE - Data to be deleted
Data type: DATAOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_CUSTOMIZED - Error in customizing
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_PROFILE_PUT_EPROFVAL15 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_profilenr | TYPE E_PROFILE, " | |||
| lv_not_customized | TYPE E_PROFILE, " | |||
| lv_xy_ref_data_db | TYPE DATA, " | |||
| lv_x_upd_tmp_data | TYPE KENNZX, " SPACE | |||
| lv_x_date_from | TYPE PROFVALDAY, " | |||
| lv_xy_ref_data_update | TYPE DATA, " | |||
| lv_x_time_from | TYPE PROFTIMEFROM, " | |||
| lv_xy_ref_data_insert | TYPE DATA, " | |||
| lv_x_date_to | TYPE PROFVALDAY, " | |||
| lv_xy_ref_data_delete | TYPE DATA, " | |||
| lv_x_time_to | TYPE PROFTIMETO, " | |||
| lv_x_upd_mode | TYPE REGEN-UPD_MODE, " | |||
| lv_x_intsizeid | TYPE INTSIZEID, " | |||
| lv_x_upd_online | TYPE REGEN-UPD_ONLINE, " 'X' | |||
| lv_x_values | TYPE TEPROFVALUES_SORTED. " |
|   CALL FUNCTION 'ISU_PROFILE_PUT_EPROFVAL15' "Write Profile Values with Interval Length 15 Minutes |
| EXPORTING | ||
| X_PROFILENR | = lv_x_profilenr | |
| X_UPD_TMP_DATA | = lv_x_upd_tmp_data | |
| X_DATE_FROM | = lv_x_date_from | |
| X_TIME_FROM | = lv_x_time_from | |
| X_DATE_TO | = lv_x_date_to | |
| X_TIME_TO | = lv_x_time_to | |
| X_UPD_MODE | = lv_x_upd_mode | |
| X_INTSIZEID | = lv_x_intsizeid | |
| X_UPD_ONLINE | = lv_x_upd_online | |
| X_VALUES | = lv_x_values | |
| CHANGING | ||
| XY_REF_DATA_DB | = lv_xy_ref_data_db | |
| XY_REF_DATA_UPDATE | = lv_xy_ref_data_update | |
| XY_REF_DATA_INSERT | = lv_xy_ref_data_insert | |
| XY_REF_DATA_DELETE | = lv_xy_ref_data_delete | |
| EXCEPTIONS | ||
| NOT_CUSTOMIZED = 1 | ||
| . " ISU_PROFILE_PUT_EPROFVAL15 | ||
ABAP code using 7.40 inline data declarations to call FM ISU_PROFILE_PUT_EPROFVAL15
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_upd_tmp_data) | = ' '. | |||
| "SELECT single UPD_MODE FROM REGEN INTO @DATA(ld_x_upd_mode). | ||||
| "SELECT single UPD_ONLINE FROM REGEN INTO @DATA(ld_x_upd_online). | ||||
| DATA(ld_x_upd_online) | = 'X'. | |||
Search for further information about these or an SAP related objects