SMD_PHIO_COPY 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 SMD_PHIO_COPY into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SMD_MISC
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'SMD_PHIO_COPY' "Copy phio
EXPORTING
i_target_loio = " sdokobject loio of copied_document
i_target_folder = " sdokobject target folder
i_src_phio = " sdokphio source phio to be copied
i_keep_description = SPACE " char1 keep description of original
i_keep_status = SPACE " char1 keep status of original
i_keep_responsible = SPACE " char1 keep person responsible of original
* i_include_smddoclink = 'X' " char1 flag for copy of SMDDOCLINK relations
* i_suppress_authority_check = SPACE " char1 no authority check
IMPORTING
e_target_phio = " sdokobject new (copied) phio
e_error_msg = " iwerrormsg IWB: Message passing structure
. " SMD_PHIO_COPY
The ABAP code below is a full code listing to execute function module SMD_PHIO_COPY 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_e_target_phio | TYPE SDOKOBJECT , |
| ld_e_error_msg | TYPE IWERRORMSG . |
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_e_target_phio | TYPE SDOKOBJECT , |
| ld_i_target_loio | TYPE SDOKOBJECT , |
| ld_e_error_msg | TYPE IWERRORMSG , |
| ld_i_target_folder | TYPE SDOKOBJECT , |
| ld_i_src_phio | TYPE SDOKPHIO , |
| ld_i_keep_description | TYPE CHAR1 , |
| ld_i_keep_status | TYPE CHAR1 , |
| ld_i_keep_responsible | TYPE CHAR1 , |
| ld_i_include_smddoclink | TYPE CHAR1 , |
| ld_i_suppress_authority_check | TYPE CHAR1 . |
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 SMD_PHIO_COPY or its description.
SMD_PHIO_COPY - Copy phio SMD_PARALLEL_PROPERTIES_SET - Set content of parallel tables for a phio SMD_PARALLEL_PROPERTIES_GET - Get content of parallel tables for a phio SMD_MODECONTEXT_GET - Get document context according to operation mode SMD_LOIO_PROPERTIES_COPY_GET - Build loio properties of copied document SMD_FLDGRP_GET - Get folder and folder group of a document