SAP IEQCM_CRM_UPDATE Function Module for NOTRANSL: Arbeitstabellen verbuchen
IEQCM_CRM_UPDATE is a standard ieqcm crm update 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: Arbeitstabellen verbuchen 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 ieqcm crm update FM, simply by entering the name IEQCM_CRM_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: IEQCM_BE_CRM
Program Name: SAPLIEQCM_BE_CRM
Main Program: SAPLIEQCM_BE_CRM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IEQCM_CRM_UPDATE 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 'IEQCM_CRM_UPDATE'"NOTRANSL: Arbeitstabellen verbuchen.
EXPORTING
IV_START_DATE = "Valid-From Date
IV_START_TIME = "Valid-From Time
TABLES
* IT_EQUI_OLD = "Equipment Master Data
* IT_EQUZ_OLD = "Equipment Time Segment
* IT_ILOA_OLD = "PM Object Location and Account Assignment
* IT_EQUI_NEW = "Equipment Master Data
* IT_EQUZ_NEW = "Equipment Time Segment
* IT_ILOA_NEW = "PM Object Location and Account Assignment
* FMRFC = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING Parameters details for IEQCM_CRM_UPDATE
IV_START_DATE - Valid-From Date
Data type: IEQ_DATABOptional: No
Call by Reference: No ( called with pass by value option)
IV_START_TIME - Valid-From Time
Data type: IEQ_TIMABOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for IEQCM_CRM_UPDATE
IT_EQUI_OLD - Equipment Master Data
Data type: EQUIOptional: Yes
Call by Reference: Yes
IT_EQUZ_OLD - Equipment Time Segment
Data type: EQUZOptional: Yes
Call by Reference: Yes
IT_ILOA_OLD - PM Object Location and Account Assignment
Data type: ILOAOptional: Yes
Call by Reference: Yes
IT_EQUI_NEW - Equipment Master Data
Data type: EQUIOptional: Yes
Call by Reference: Yes
IT_EQUZ_NEW - Equipment Time Segment
Data type: EQUZOptional: Yes
Call by Reference: Yes
IT_ILOA_NEW - PM Object Location and Account Assignment
Data type: ILOAOptional: Yes
Call by Reference: Yes
FMRFC - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: FMRFCOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for IEQCM_CRM_UPDATE 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: | ||||
| lt_it_equi_old | TYPE STANDARD TABLE OF EQUI, " | |||
| lv_iv_start_date | TYPE IEQ_DATAB, " | |||
| lt_it_equz_old | TYPE STANDARD TABLE OF EQUZ, " | |||
| lv_iv_start_time | TYPE IEQ_TIMAB, " | |||
| lt_it_iloa_old | TYPE STANDARD TABLE OF ILOA, " | |||
| lt_it_equi_new | TYPE STANDARD TABLE OF EQUI, " | |||
| lt_it_equz_new | TYPE STANDARD TABLE OF EQUZ, " | |||
| lt_it_iloa_new | TYPE STANDARD TABLE OF ILOA, " | |||
| lt_fmrfc | TYPE STANDARD TABLE OF FMRFC. " |
|   CALL FUNCTION 'IEQCM_CRM_UPDATE' "NOTRANSL: Arbeitstabellen verbuchen |
| EXPORTING | ||
| IV_START_DATE | = lv_iv_start_date | |
| IV_START_TIME | = lv_iv_start_time | |
| TABLES | ||
| IT_EQUI_OLD | = lt_it_equi_old | |
| IT_EQUZ_OLD | = lt_it_equz_old | |
| IT_ILOA_OLD | = lt_it_iloa_old | |
| IT_EQUI_NEW | = lt_it_equi_new | |
| IT_EQUZ_NEW | = lt_it_equz_new | |
| IT_ILOA_NEW | = lt_it_iloa_new | |
| FMRFC | = lt_fmrfc | |
| . " IEQCM_CRM_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM IEQCM_CRM_UPDATE
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