SAP SLIDER_CREATE Function Module for
SLIDER_CREATE is a standard slider create 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 slider create FM, simply by entering the name SLIDER_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: CNFP
Program Name: SAPLCNFP
Main Program:
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SLIDER_CREATE 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 'SLIDER_CREATE'".
EXPORTING
OWNER_REPID = "
TICK_SMALL_STEP = "
* PARENTID = "
* SHELLSTYLE = "
* NO_FLUSH = ' ' "
DYNNR = "
LEFT = "
TOP = "
MIN = "Minimum
MAX = "Maximum
* ADDITIONAL_TEXT = ' ' "
* TAGS = ' ' "
TICK_FREQUENCY = "
CHANGING
HANDLE = "
EXCEPTIONS
CREATE_ERROR = 1
IMPORTING Parameters details for SLIDER_CREATE
OWNER_REPID -
Data type: SY-REPIDOptional: No
Call by Reference: No ( called with pass by value option)
TICK_SMALL_STEP -
Data type: FOptional: No
Call by Reference: No ( called with pass by value option)
PARENTID -
Data type: IOptional: Yes
Call by Reference: No ( called with pass by value option)
SHELLSTYLE -
Data type: IOptional: Yes
Call by Reference: No ( called with pass by value option)
NO_FLUSH -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
DYNNR -
Data type: SY-DYNNROptional: No
Call by Reference: No ( called with pass by value option)
LEFT -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
TOP -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
MIN - Minimum
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
MAX - Maximum
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
ADDITIONAL_TEXT -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TAGS -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TICK_FREQUENCY -
Data type: FOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for SLIDER_CREATE
HANDLE -
Data type: CNTL_HANDLEOptional: No
Call by Reference: Yes
EXCEPTIONS details
CREATE_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SLIDER_CREATE 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_handle | TYPE CNTL_HANDLE, " | |||
| lv_owner_repid | TYPE SY-REPID, " | |||
| lv_create_error | TYPE SY, " | |||
| lv_tick_small_step | TYPE F, " | |||
| lv_parentid | TYPE I, " | |||
| lv_shellstyle | TYPE I, " | |||
| lv_no_flush | TYPE C, " SPACE | |||
| lv_dynnr | TYPE SY-DYNNR, " | |||
| lv_left | TYPE I, " | |||
| lv_top | TYPE I, " | |||
| lv_min | TYPE I, " | |||
| lv_max | TYPE I, " | |||
| lv_additional_text | TYPE C, " SPACE | |||
| lv_tags | TYPE C, " SPACE | |||
| lv_tick_frequency | TYPE F. " |
|   CALL FUNCTION 'SLIDER_CREATE' " |
| EXPORTING | ||
| OWNER_REPID | = lv_owner_repid | |
| TICK_SMALL_STEP | = lv_tick_small_step | |
| PARENTID | = lv_parentid | |
| SHELLSTYLE | = lv_shellstyle | |
| NO_FLUSH | = lv_no_flush | |
| DYNNR | = lv_dynnr | |
| LEFT | = lv_left | |
| TOP | = lv_top | |
| MIN | = lv_min | |
| MAX | = lv_max | |
| ADDITIONAL_TEXT | = lv_additional_text | |
| TAGS | = lv_tags | |
| TICK_FREQUENCY | = lv_tick_frequency | |
| CHANGING | ||
| HANDLE | = lv_handle | |
| EXCEPTIONS | ||
| CREATE_ERROR = 1 | ||
| . " SLIDER_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM SLIDER_CREATE
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 REPID FROM SY INTO @DATA(ld_owner_repid). | ||||
| DATA(ld_no_flush) | = ' '. | |||
| "SELECT single DYNNR FROM SY INTO @DATA(ld_dynnr). | ||||
| DATA(ld_additional_text) | = ' '. | |||
| DATA(ld_tags) | = ' '. | |||
Search for further information about these or an SAP related objects