DMC_ACS_SPLIT_RANGE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name DMC_ACS_SPLIT_RANGE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CNV2
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'DMC_ACS_SPLIT_RANGE' "
EXPORTING
im_tabname = " dd03l-tabname
im_range = " dmcrange
im_client_spec = " dmc_types-boolean
TABLES
im_it_keydef = " dmckeydef
* im_it_settings = " dmcstg
* im_it_const_keyfield = " dmccons_kf
ex_it_range_new = " dmcrange
EXCEPTIONS
NO_SPLIT_POSSIBLE = 1 "
. " DMC_ACS_SPLIT_RANGE
The ABAP code below is a full code listing to execute function module DMC_ACS_SPLIT_RANGE including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_im_it_keydef | TYPE STANDARD TABLE OF DMCKEYDEF,"TABLES PARAM |
| wa_im_it_keydef | LIKE LINE OF it_im_it_keydef , |
| it_im_it_settings | TYPE STANDARD TABLE OF DMCSTG,"TABLES PARAM |
| wa_im_it_settings | LIKE LINE OF it_im_it_settings , |
| it_im_it_const_keyfield | TYPE STANDARD TABLE OF DMCCONS_KF,"TABLES PARAM |
| wa_im_it_const_keyfield | LIKE LINE OF it_im_it_const_keyfield , |
| it_ex_it_range_new | TYPE STANDARD TABLE OF DMCRANGE,"TABLES PARAM |
| wa_ex_it_range_new | LIKE LINE OF it_ex_it_range_new . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_im_tabname | TYPE DD03L-TABNAME , |
| it_im_it_keydef | TYPE STANDARD TABLE OF DMCKEYDEF , |
| wa_im_it_keydef | LIKE LINE OF it_im_it_keydef, |
| ld_im_range | TYPE DMCRANGE , |
| it_im_it_settings | TYPE STANDARD TABLE OF DMCSTG , |
| wa_im_it_settings | LIKE LINE OF it_im_it_settings, |
| ld_im_client_spec | TYPE DMC_TYPES-BOOLEAN , |
| it_im_it_const_keyfield | TYPE STANDARD TABLE OF DMCCONS_KF , |
| wa_im_it_const_keyfield | LIKE LINE OF it_im_it_const_keyfield, |
| it_ex_it_range_new | TYPE STANDARD TABLE OF DMCRANGE , |
| wa_ex_it_range_new | LIKE LINE OF it_ex_it_range_new. |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name DMC_ACS_SPLIT_RANGE or its description.