SAP /SAPAPO/EINT_MOD_OBJECTS_GET Function Module for Returns All Changed Objects
/SAPAPO/EINT_MOD_OBJECTS_GET is a standard /sapapo/eint mod objects get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Returns All Changed Objects 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 /sapapo/eint mod objects get FM, simply by entering the name /SAPAPO/EINT_MOD_OBJECTS_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: /SAPAPO/CDPS_EXT_INTERFACE
Program Name: /SAPAPO/SAPLCDPS_EXT_INTERFACE
Main Program: /SAPAPO/SAPLCDPS_EXT_INTERFACE
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /SAPAPO/EINT_MOD_OBJECTS_GET 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 '/SAPAPO/EINT_MOD_OBJECTS_GET'"Returns All Changed Objects.
IMPORTING
E_TIMEPOS = "Startposition der Zeitachse
E_REFRESH_FLG = "Kennzeichen: Plantafel neuladen
E_REBUILD_FLG = "Kennzeichen: Plantafel neu aufbauen
TABLES
* E_ORDER_TAB = "
* E_ORDER_PROP_TAB = "
* E_RESOURCE_PROP_TAB = "
* E_MATERIAL_PROP_TAB = "
* E_CAPREQ_PROP_TAB = "
* E_ORDER_TOTAL_TAB = "Tabelle mit Auftragsinformationen
* E_RESOURCE_TOTAL_TAB = "Ressourcen Kopf mit Zusatzdaten
* E_MATERIAL_TOTAL_TAB = "Materialdaten
* E_CAPREQ_TOTAL_TAB = "Tabelle mit Kapazitätsbedarfen für die Plantafelanzeige
* E_PCMS_TAB = "Längen von Produktionskampagnen
* E_RESOURCE_TAB = "
* E_MATERIAL_TAB = "
* E_CAPREQ_TAB = "
* E_ORDER_RC_TAB = "
* E_RESOURCE_RC_TAB = "
* E_MATERIAL_RC_TAB = "
* E_CAPREQ_RC_TAB = "
EXPORTING Parameters details for /SAPAPO/EINT_MOD_OBJECTS_GET
E_TIMEPOS - Startposition der Zeitachse
Data type: TIMESTAMPOptional: No
Call by Reference: Yes
E_REFRESH_FLG - Kennzeichen: Plantafel neuladen
Data type: COptional: No
Call by Reference: Yes
E_REBUILD_FLG - Kennzeichen: Plantafel neu aufbauen
Data type: COptional: No
Call by Reference: Yes
TABLES Parameters details for /SAPAPO/EINT_MOD_OBJECTS_GET
E_ORDER_TAB -
Data type: /SAPAPO/CDPS_ORD_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_ORDER_PROP_TAB -
Data type: /SAPAPO/CDPS_OBJ_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_RESOURCE_PROP_TAB -
Data type: /SAPAPO/CDPS_OBJ_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_MATERIAL_PROP_TAB -
Data type: /SAPAPO/CDPS_OBJ_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_CAPREQ_PROP_TAB -
Data type: /SAPAPO/CDPS_CAPREQ_OBJ_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_ORDER_TOTAL_TAB - Tabelle mit Auftragsinformationen
Data type: /SAPAPO/CDPS_ORD_TABOptional: Yes
Call by Reference: Yes
E_RESOURCE_TOTAL_TAB - Ressourcen Kopf mit Zusatzdaten
Data type: /SAPAPO/CRES_RES_HEAD_PLNT_TABOptional: Yes
Call by Reference: Yes
E_MATERIAL_TOTAL_TAB - Materialdaten
Data type: /SAPAPO/CDPS_MATERIAL_TABOptional: Yes
Call by Reference: Yes
E_CAPREQ_TOTAL_TAB - Tabelle mit Kapazitätsbedarfen für die Plantafelanzeige
Data type: /SAPAPO/OM_CAP_REQ_PT_TABOptional: Yes
Call by Reference: Yes
E_PCMS_TAB - Längen von Produktionskampagnen
Data type: /SAPAPO/OM_PCMID_TABOptional: Yes
Call by Reference: Yes
E_RESOURCE_TAB -
Data type: /SAPAPO/CRES_RES_HEAD_PLNT_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_MATERIAL_TAB -
Data type: /SAPAPO/CDPS_MATERIAL_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_CAPREQ_TAB -
Data type: /SAPAPO/OM_CAP_REQ_PT_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_ORDER_RC_TAB -
Data type: /SAPAPO/OM_LC_RC_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_RESOURCE_RC_TAB -
Data type: /SAPAPO/OM_LC_RC_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_MATERIAL_RC_TAB -
Data type: /SAPAPO/OM_LC_RC_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
E_CAPREQ_RC_TAB -
Data type: /SAPAPO/OM_LC_RC_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for /SAPAPO/EINT_MOD_OBJECTS_GET 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_e_timepos | TYPE TIMESTAMP, " | |||
| lt_e_order_tab | TYPE STANDARD TABLE OF /SAPAPO/CDPS_ORD_TAB, " | |||
| lt_e_order_prop_tab | TYPE STANDARD TABLE OF /SAPAPO/CDPS_OBJ_TAB, " | |||
| lt_e_resource_prop_tab | TYPE STANDARD TABLE OF /SAPAPO/CDPS_OBJ_TAB, " | |||
| lt_e_material_prop_tab | TYPE STANDARD TABLE OF /SAPAPO/CDPS_OBJ_TAB, " | |||
| lt_e_capreq_prop_tab | TYPE STANDARD TABLE OF /SAPAPO/CDPS_CAPREQ_OBJ_TAB, " | |||
| lt_e_order_total_tab | TYPE STANDARD TABLE OF /SAPAPO/CDPS_ORD_TAB, " | |||
| lt_e_resource_total_tab | TYPE STANDARD TABLE OF /SAPAPO/CRES_RES_HEAD_PLNT_TAB, " | |||
| lt_e_material_total_tab | TYPE STANDARD TABLE OF /SAPAPO/CDPS_MATERIAL_TAB, " | |||
| lt_e_capreq_total_tab | TYPE STANDARD TABLE OF /SAPAPO/OM_CAP_REQ_PT_TAB, " | |||
| lt_e_pcms_tab | TYPE STANDARD TABLE OF /SAPAPO/OM_PCMID_TAB, " | |||
| lv_e_refresh_flg | TYPE C, " | |||
| lv_e_rebuild_flg | TYPE C, " | |||
| lt_e_resource_tab | TYPE STANDARD TABLE OF /SAPAPO/CRES_RES_HEAD_PLNT_TAB, " | |||
| lt_e_material_tab | TYPE STANDARD TABLE OF /SAPAPO/CDPS_MATERIAL_TAB, " | |||
| lt_e_capreq_tab | TYPE STANDARD TABLE OF /SAPAPO/OM_CAP_REQ_PT_TAB, " | |||
| lt_e_order_rc_tab | TYPE STANDARD TABLE OF /SAPAPO/OM_LC_RC_TAB, " | |||
| lt_e_resource_rc_tab | TYPE STANDARD TABLE OF /SAPAPO/OM_LC_RC_TAB, " | |||
| lt_e_material_rc_tab | TYPE STANDARD TABLE OF /SAPAPO/OM_LC_RC_TAB, " | |||
| lt_e_capreq_rc_tab | TYPE STANDARD TABLE OF /SAPAPO/OM_LC_RC_TAB. " |
|   CALL FUNCTION '/SAPAPO/EINT_MOD_OBJECTS_GET' "Returns All Changed Objects |
| IMPORTING | ||
| E_TIMEPOS | = lv_e_timepos | |
| E_REFRESH_FLG | = lv_e_refresh_flg | |
| E_REBUILD_FLG | = lv_e_rebuild_flg | |
| TABLES | ||
| E_ORDER_TAB | = lt_e_order_tab | |
| E_ORDER_PROP_TAB | = lt_e_order_prop_tab | |
| E_RESOURCE_PROP_TAB | = lt_e_resource_prop_tab | |
| E_MATERIAL_PROP_TAB | = lt_e_material_prop_tab | |
| E_CAPREQ_PROP_TAB | = lt_e_capreq_prop_tab | |
| E_ORDER_TOTAL_TAB | = lt_e_order_total_tab | |
| E_RESOURCE_TOTAL_TAB | = lt_e_resource_total_tab | |
| E_MATERIAL_TOTAL_TAB | = lt_e_material_total_tab | |
| E_CAPREQ_TOTAL_TAB | = lt_e_capreq_total_tab | |
| E_PCMS_TAB | = lt_e_pcms_tab | |
| E_RESOURCE_TAB | = lt_e_resource_tab | |
| E_MATERIAL_TAB | = lt_e_material_tab | |
| E_CAPREQ_TAB | = lt_e_capreq_tab | |
| E_ORDER_RC_TAB | = lt_e_order_rc_tab | |
| E_RESOURCE_RC_TAB | = lt_e_resource_rc_tab | |
| E_MATERIAL_RC_TAB | = lt_e_material_rc_tab | |
| E_CAPREQ_RC_TAB | = lt_e_capreq_rc_tab | |
| . " /SAPAPO/EINT_MOD_OBJECTS_GET | ||
ABAP code using 7.40 inline data declarations to call FM /SAPAPO/EINT_MOD_OBJECTS_GET
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