SAP EQUI_ISTRU_MOVETO_STRUCT Function Module for NOTRANSL: Übernahme der Daten aus den ISTRU-Strukturen in Equipment-Strukt
EQUI_ISTRU_MOVETO_STRUCT is a standard equi istru moveto struct SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Übernahme der Daten aus den ISTRU-Strukturen in Equipment-Strukt 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 equi istru moveto struct FM, simply by entering the name EQUI_ISTRU_MOVETO_STRUCT into the relevant SAP transaction such as SE37 or SE38.
Function Group: IE01
Program Name: SAPLIE01
Main Program: SAPLIE01
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EQUI_ISTRU_MOVETO_STRUCT 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 'EQUI_ISTRU_MOVETO_STRUCT'"NOTRANSL: Übernahme der Daten aus den ISTRU-Strukturen in Equipment-Strukt.
EXPORTING
* WA_ISTRU_EQ = "Internal Structure for Transferring Fields to EQUI
* WA_ISTRU_EQ_U = "Update Indicators for Structure ISTRU_EQ
* WA_ISTRU_EZ = "Internal Structure for Transferring Fields to EQUZ/ILOA
* WA_ISTRU_EZ_U = "Update Indicators for Structure ISTRU_EZ
CHANGING
* WA_EQUI = "Equipment master data
* WA_EQUZ = "Equipment time segment
* WA_ILOA = "PM Object Location and Account Assignment
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLIE01_005 Serial Numbers, User Exit in the Update
EXIT_SAPLIE01_007 Serial Numbers, User Exit in Goods Movement
IMPORTING Parameters details for EQUI_ISTRU_MOVETO_STRUCT
WA_ISTRU_EQ - Internal Structure for Transferring Fields to EQUI
Data type: ISTRU_EQOptional: Yes
Call by Reference: Yes
WA_ISTRU_EQ_U - Update Indicators for Structure ISTRU_EQ
Data type: ISTRU_EQ_UOptional: Yes
Call by Reference: Yes
WA_ISTRU_EZ - Internal Structure for Transferring Fields to EQUZ/ILOA
Data type: ISTRU_EZOptional: Yes
Call by Reference: Yes
WA_ISTRU_EZ_U - Update Indicators for Structure ISTRU_EZ
Data type: ISTRU_EZ_UOptional: Yes
Call by Reference: Yes
CHANGING Parameters details for EQUI_ISTRU_MOVETO_STRUCT
WA_EQUI - Equipment master data
Data type: EQUIOptional: Yes
Call by Reference: Yes
WA_EQUZ - Equipment time segment
Data type: EQUZOptional: Yes
Call by Reference: Yes
WA_ILOA - PM Object Location and Account Assignment
Data type: ILOAOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for EQUI_ISTRU_MOVETO_STRUCT 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_wa_equi | TYPE EQUI, " | |||
| lv_wa_istru_eq | TYPE ISTRU_EQ, " | |||
| lv_wa_equz | TYPE EQUZ, " | |||
| lv_wa_istru_eq_u | TYPE ISTRU_EQ_U, " | |||
| lv_wa_iloa | TYPE ILOA, " | |||
| lv_wa_istru_ez | TYPE ISTRU_EZ, " | |||
| lv_wa_istru_ez_u | TYPE ISTRU_EZ_U. " |
|   CALL FUNCTION 'EQUI_ISTRU_MOVETO_STRUCT' "NOTRANSL: Übernahme der Daten aus den ISTRU-Strukturen in Equipment-Strukt |
| EXPORTING | ||
| WA_ISTRU_EQ | = lv_wa_istru_eq | |
| WA_ISTRU_EQ_U | = lv_wa_istru_eq_u | |
| WA_ISTRU_EZ | = lv_wa_istru_ez | |
| WA_ISTRU_EZ_U | = lv_wa_istru_ez_u | |
| CHANGING | ||
| WA_EQUI | = lv_wa_equi | |
| WA_EQUZ | = lv_wa_equz | |
| WA_ILOA | = lv_wa_iloa | |
| . " EQUI_ISTRU_MOVETO_STRUCT | ||
ABAP code using 7.40 inline data declarations to call FM EQUI_ISTRU_MOVETO_STRUCT
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.Search for further information about these or an SAP related objects