SAP Function Modules

SMD_PHIO_COPY SAP Function module - Copy phio







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
Normal function module settings


Pattern for FM SMD_PHIO_COPY - SMD PHIO COPY





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

ABAP code example for Function Module 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).

DATA:
ld_e_target_phio  TYPE SDOKOBJECT ,
ld_e_error_msg  TYPE IWERRORMSG .

DATA(ld_i_target_loio) = 'Check type of data required'.
DATA(ld_i_target_folder) = 'Check type of data required'.
DATA(ld_i_src_phio) = 'Check type of data required'.
DATA(ld_i_keep_description) = 'Check type of data required'.
DATA(ld_i_keep_status) = 'Check type of data required'.
DATA(ld_i_keep_responsible) = 'Check type of data required'.
DATA(ld_i_include_smddoclink) = 'Check type of data required'.
DATA(ld_i_suppress_authority_check) = 'Check type of data required'. . CALL FUNCTION 'SMD_PHIO_COPY' EXPORTING i_target_loio = ld_i_target_loio i_target_folder = ld_i_target_folder i_src_phio = ld_i_src_phio i_keep_description = ld_i_keep_description i_keep_status = ld_i_keep_status i_keep_responsible = ld_i_keep_responsible * i_include_smddoclink = ld_i_include_smddoclink * i_suppress_authority_check = ld_i_suppress_authority_check IMPORTING e_target_phio = ld_e_target_phio e_error_msg = ld_e_error_msg . " SMD_PHIO_COPY
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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 .

ld_i_target_loio = 'Check type of data required'.
ld_i_target_folder = 'Check type of data required'.
ld_i_src_phio = 'Check type of data required'.
ld_i_keep_description = 'Check type of data required'.
ld_i_keep_status = 'Check type of data required'.
ld_i_keep_responsible = 'Check type of data required'.
ld_i_include_smddoclink = 'Check type of data required'.
ld_i_suppress_authority_check = 'Check type of data required'.

Contribute (Add Comments)

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.