DX_ATTRIB_SPLIT_CHANGE 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 DX_ATTRIB_SPLIT_CHANGE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
DX_ATTRIB_SPLIT
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'DX_ATTRIB_SPLIT_CHANGE' "
EXPORTING
project = " dxattrib3-project Data Transfer Project
subproject = " dxattrib3-subproject Data Transfer Subproject
rundef = " dxattrib3-rundef Data Transfer - Run Definition
task = " dxattrib3-task Data transfer task
* progtype = " dxattrib3-progtype Program Type
* progname = " dxattrib3-progname Data transfer program/method
* splittype = " dxattrib3-splittype Way Source File Is To Be Split
* objectno = " dxattrib3-objectno Number of Objects per File
* linesno = " dxattrib3-linesno Number of Lines per File
* delsource = " dxattrib3-delsource Delete Source File After Split
* deltarget = " dxattrib3-deltarget Delete Potential Target Files Before Split
* dialog = 'X' " dxfields-dialog
IMPORTING
attribdata = " dxattrib3 Task Attributes
* TABLES
* input_files = " dxfilelp Files: Physical File Name (Transfer Structure)
* output_files = " dxfilelp Files: Name & Type & Storage Data (like LSMW)
EXCEPTIONS
TASK_DOES_NOT_EXIST = 1 "
ERROR_IN_PARAMETERS = 2 "
RUNS_ALREADY_EXIST = 3 "
TYPE_DOES_NOT_EXIST = 4 "
SUBPROJECT_LOCKED = 5 "
CANCELED_BY_USER = 6 "
DB_ERROR = 7 "
NO_AUTHORITY = 8 "
. " DX_ATTRIB_SPLIT_CHANGE
The ABAP code below is a full code listing to execute function module DX_ATTRIB_SPLIT_CHANGE 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).
| ld_attribdata | TYPE DXATTRIB3 , |
| it_input_files | TYPE STANDARD TABLE OF DXFILELP,"TABLES PARAM |
| wa_input_files | LIKE LINE OF it_input_files , |
| it_output_files | TYPE STANDARD TABLE OF DXFILELP,"TABLES PARAM |
| wa_output_files | LIKE LINE OF it_output_files . |
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_attribdata | TYPE DXATTRIB3 , |
| ld_project | TYPE DXATTRIB3-PROJECT , |
| it_input_files | TYPE STANDARD TABLE OF DXFILELP , |
| wa_input_files | LIKE LINE OF it_input_files, |
| ld_subproject | TYPE DXATTRIB3-SUBPROJECT , |
| it_output_files | TYPE STANDARD TABLE OF DXFILELP , |
| wa_output_files | LIKE LINE OF it_output_files, |
| ld_rundef | TYPE DXATTRIB3-RUNDEF , |
| ld_task | TYPE DXATTRIB3-TASK , |
| ld_progtype | TYPE DXATTRIB3-PROGTYPE , |
| ld_progname | TYPE DXATTRIB3-PROGNAME , |
| ld_splittype | TYPE DXATTRIB3-SPLITTYPE , |
| ld_objectno | TYPE DXATTRIB3-OBJECTNO , |
| ld_linesno | TYPE DXATTRIB3-LINESNO , |
| ld_delsource | TYPE DXATTRIB3-DELSOURCE , |
| ld_deltarget | TYPE DXATTRIB3-DELTARGET , |
| ld_dialog | TYPE DXFIELDS-DIALOG . |
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 DX_ATTRIB_SPLIT_CHANGE or its description.