SAP ISU_S_MOVE_OUT_CONFIRM_PRINT Function Module for Print Move-Out Confirmation
ISU_S_MOVE_OUT_CONFIRM_PRINT is a standard isu s move out confirm print SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Print Move-Out Confirmation processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for isu s move out confirm print FM, simply by entering the name ISU_S_MOVE_OUT_CONFIRM_PRINT into the relevant SAP transaction such as SE37 or SE38.
Function Group: EC_PRINT
Program Name: SAPLEC_PRINT
Main Program: SAPLEC_PRINT
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_S_MOVE_OUT_CONFIRM_PRINT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'ISU_S_MOVE_OUT_CONFIRM_PRINT'"Print Move-Out Confirmation.
EXPORTING
X_AUSZBELEG = "
* X_LANGU = "
X_GPART = "
X_VKONT = "
* X_FORMKEY = "
* X_MOVEOUTDATE = "
* X_DELAYED_PRINT = "
* X_AUSWFORM = "
* X_REPRINT = "
IMPORTING
Y_FORMKEY = "
EXCEPTIONS
ACTION_CANCELLED = 1 ACTION_FAILED = 2 BCONTACT_FAILED = 3
IMPORTING Parameters details for ISU_S_MOVE_OUT_CONFIRM_PRINT
X_AUSZBELEG -
Data type: EAUS-AUSZBELEGOptional: No
Call by Reference: No ( called with pass by value option)
X_LANGU -
Data type: SY-LANGUOptional: Yes
Call by Reference: No ( called with pass by value option)
X_GPART -
Data type: EAUS-KUNDEOptional: No
Call by Reference: No ( called with pass by value option)
X_VKONT -
Data type: EAUS-VKONTOptional: No
Call by Reference: No ( called with pass by value option)
X_FORMKEY -
Data type: EPRINTPARAMS-FORMKEYOptional: Yes
Call by Reference: No ( called with pass by value option)
X_MOVEOUTDATE -
Data type: EVER-AUSZDATOptional: Yes
Call by Reference: No ( called with pass by value option)
X_DELAYED_PRINT -
Data type: EPRINTPARAMS-DELAYED_PRINTOptional: Yes
Call by Reference: No ( called with pass by value option)
X_AUSWFORM -
Data type: EAUS-AUSWFORMOptional: Yes
Call by Reference: No ( called with pass by value option)
X_REPRINT -
Data type: REGEN-KENNZXOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISU_S_MOVE_OUT_CONFIRM_PRINT
Y_FORMKEY -
Data type: EPRINTPARAMS-FORMKEYOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ACTION_CANCELLED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ACTION_FAILED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
BCONTACT_FAILED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_S_MOVE_OUT_CONFIRM_PRINT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_y_formkey | TYPE EPRINTPARAMS-FORMKEY, " | |||
| lv_x_auszbeleg | TYPE EAUS-AUSZBELEG, " | |||
| lv_action_cancelled | TYPE EAUS, " | |||
| lv_x_langu | TYPE SY-LANGU, " | |||
| lv_action_failed | TYPE SY, " | |||
| lv_x_gpart | TYPE EAUS-KUNDE, " | |||
| lv_bcontact_failed | TYPE EAUS, " | |||
| lv_x_vkont | TYPE EAUS-VKONT, " | |||
| lv_x_formkey | TYPE EPRINTPARAMS-FORMKEY, " | |||
| lv_x_moveoutdate | TYPE EVER-AUSZDAT, " | |||
| lv_x_delayed_print | TYPE EPRINTPARAMS-DELAYED_PRINT, " | |||
| lv_x_auswform | TYPE EAUS-AUSWFORM, " | |||
| lv_x_reprint | TYPE REGEN-KENNZX. " |
|   CALL FUNCTION 'ISU_S_MOVE_OUT_CONFIRM_PRINT' "Print Move-Out Confirmation |
| EXPORTING | ||
| X_AUSZBELEG | = lv_x_auszbeleg | |
| X_LANGU | = lv_x_langu | |
| X_GPART | = lv_x_gpart | |
| X_VKONT | = lv_x_vkont | |
| X_FORMKEY | = lv_x_formkey | |
| X_MOVEOUTDATE | = lv_x_moveoutdate | |
| X_DELAYED_PRINT | = lv_x_delayed_print | |
| X_AUSWFORM | = lv_x_auswform | |
| X_REPRINT | = lv_x_reprint | |
| IMPORTING | ||
| Y_FORMKEY | = lv_y_formkey | |
| EXCEPTIONS | ||
| ACTION_CANCELLED = 1 | ||
| ACTION_FAILED = 2 | ||
| BCONTACT_FAILED = 3 | ||
| . " ISU_S_MOVE_OUT_CONFIRM_PRINT | ||
ABAP code using 7.40 inline data declarations to call FM ISU_S_MOVE_OUT_CONFIRM_PRINT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single FORMKEY FROM EPRINTPARAMS INTO @DATA(ld_y_formkey). | ||||
| "SELECT single AUSZBELEG FROM EAUS INTO @DATA(ld_x_auszbeleg). | ||||
| "SELECT single LANGU FROM SY INTO @DATA(ld_x_langu). | ||||
| "SELECT single KUNDE FROM EAUS INTO @DATA(ld_x_gpart). | ||||
| "SELECT single VKONT FROM EAUS INTO @DATA(ld_x_vkont). | ||||
| "SELECT single FORMKEY FROM EPRINTPARAMS INTO @DATA(ld_x_formkey). | ||||
| "SELECT single AUSZDAT FROM EVER INTO @DATA(ld_x_moveoutdate). | ||||
| "SELECT single DELAYED_PRINT FROM EPRINTPARAMS INTO @DATA(ld_x_delayed_print). | ||||
| "SELECT single AUSWFORM FROM EAUS INTO @DATA(ld_x_auswform). | ||||
| "SELECT single KENNZX FROM REGEN INTO @DATA(ld_x_reprint). | ||||
Search for further information about these or an SAP related objects