SAP Function Modules

ISU_OUTPUT_IOPER_PROCESS SAP Function module







ISU_OUTPUT_IOPER_PROCESS 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 ISU_OUTPUT_IOPER_PROCESS into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: EAV0
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM ISU_OUTPUT_IOPER_PROCESS - ISU OUTPUT IOPER PROCESS





CALL FUNCTION 'ISU_OUTPUT_IOPER_PROCESS' "
  EXPORTING
    x_ss =                      " isu2a_ss
    x_ioutsteps =               " isu2a_ioutput_steps
    x_iss =                     " isu2a_iss     Table of Schema Steps
    x_op =                      " isu2a_oper_non_hist
  CHANGING
    xy_ioper =                  " isu2a_billing_data-ioper
*   xy_out_ioper =              " isu2a_out_ioper
*   xy_out_oper =               " isu2a_out_oper
  EXCEPTIONS
    GENERAL_FAULT = 1           "               General Error
    REGULAR_ERROR = 2           "
    .  "  ISU_OUTPUT_IOPER_PROCESS

ABAP code example for Function Module ISU_OUTPUT_IOPER_PROCESS





The ABAP code below is a full code listing to execute function module ISU_OUTPUT_IOPER_PROCESS 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_xy_ioper) = some text here
DATA(ld_xy_out_ioper) = 'Check type of data required'.
DATA(ld_xy_out_oper) = 'Check type of data required'.
DATA(ld_x_ss) = 'Check type of data required'.
DATA(ld_x_ioutsteps) = 'Check type of data required'.
DATA(ld_x_iss) = 'Check type of data required'.
DATA(ld_x_op) = 'Check type of data required'. . CALL FUNCTION 'ISU_OUTPUT_IOPER_PROCESS' EXPORTING x_ss = ld_x_ss x_ioutsteps = ld_x_ioutsteps x_iss = ld_x_iss x_op = ld_x_op CHANGING xy_ioper = ld_xy_ioper * xy_out_ioper = ld_xy_out_ioper * xy_out_oper = ld_xy_out_oper EXCEPTIONS GENERAL_FAULT = 1 REGULAR_ERROR = 2 . " ISU_OUTPUT_IOPER_PROCESS
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here 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_xy_ioper  TYPE ISU2A_BILLING_DATA-IOPER ,
ld_x_ss  TYPE ISU2A_SS ,
ld_xy_out_ioper  TYPE ISU2A_OUT_IOPER ,
ld_x_ioutsteps  TYPE ISU2A_IOUTPUT_STEPS ,
ld_xy_out_oper  TYPE ISU2A_OUT_OPER ,
ld_x_iss  TYPE ISU2A_ISS ,
ld_x_op  TYPE ISU2A_OPER_NON_HIST .


ld_xy_ioper = some text here
ld_x_ss = 'Check type of data required'.
ld_xy_out_ioper = 'Check type of data required'.
ld_x_ioutsteps = 'Check type of data required'.
ld_xy_out_oper = 'Check type of data required'.
ld_x_iss = 'Check type of data required'.
ld_x_op = '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 ISU_OUTPUT_IOPER_PROCESS or its description.