SAP CRM_LAE_INFO_REPLICATE Function Module for NOTRANSL: Replikation von CRM-Merkmalen für den CO-Translator









CRM_LAE_INFO_REPLICATE is a standard crm lae info replicate 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: Replikation von CRM-Merkmalen für den CO-Translator 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 crm lae info replicate FM, simply by entering the name CRM_LAE_INFO_REPLICATE into the relevant SAP transaction such as SE37 or SE38.

Function Group: CRM_CO_INFO_FIN_REPLICATE
Program Name: SAPLCRM_CO_INFO_FIN_REPLICATE
Main Program: SAPLCRM_CO_INFO_FIN_REPLICATE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function CRM_LAE_INFO_REPLICATE 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 'CRM_LAE_INFO_REPLICATE'"NOTRANSL: Replikation von CRM-Merkmalen für den CO-Translator
EXPORTING
DELETE_EXISTING_RECORDS = "DE-EN-LANG-SWITCH-NO-TRANSLATION

TABLES
PROCESS_TYPE = "Business Transaction Type
TECH_SERV_ORG = "Technician Group (Executing Service Organization)
TECH_SERV_ORG_T = "Technician Group (Executing Service Organization) Text
SERVICE_TYPE = "Service Type
SERVICE_TYPE_T = "Service Type: Texts
VALUATION_TYPE = "Valuation Type
VALUATION_TYPE_T = "Valuation Type: Texts
PROD_CATEGORY_ID = "Product Category (20-place as in CRM)
PROD_CATEGORY_ID_T = "Product Category Description
PROCESS_TYPE_T = "Transaction Types: Texts
ITEM_TYPE = "Business Transaction Item Type
ITEM_TYPE_T = "Item Categories: Texts
PARTNER = "Business Partner from CRM
SERVICE_ORG = "Service Organization
SERVICE_ORG_T = "Service Organization Texts
RESP_SERV_ORG = "Responsible Service Organization CRM
RESP_SERV_ORG_T = "Responsible Service Organization CRM Texts

EXCEPTIONS
INSERT_FAILED = 1
.



IMPORTING Parameters details for CRM_LAE_INFO_REPLICATE

DELETE_EXISTING_RECORDS - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: CHAR1
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for CRM_LAE_INFO_REPLICATE

PROCESS_TYPE - Business Transaction Type

Data type: CRMC_PR_TYP_CO
Optional: No
Call by Reference: No ( called with pass by value option)

TECH_SERV_ORG - Technician Group (Executing Service Organization)

Data type: CRMC_TSVORG_CO
Optional: No
Call by Reference: No ( called with pass by value option)

TECH_SERV_ORG_T - Technician Group (Executing Service Organization) Text

Data type: CRMC_TSVORG_CO_T
Optional: No
Call by Reference: No ( called with pass by value option)

SERVICE_TYPE - Service Type

Data type: CRMC_SRVTYP_CO
Optional: No
Call by Reference: No ( called with pass by value option)

SERVICE_TYPE_T - Service Type: Texts

Data type: CRMC_SRVTYP_CO_T
Optional: No
Call by Reference: No ( called with pass by value option)

VALUATION_TYPE - Valuation Type

Data type: CRMC_VALTYP_CO
Optional: No
Call by Reference: No ( called with pass by value option)

VALUATION_TYPE_T - Valuation Type: Texts

Data type: CRMC_VALTYP_CO_T
Optional: No
Call by Reference: No ( called with pass by value option)

PROD_CATEGORY_ID - Product Category (20-place as in CRM)

Data type: COMM_CATGRY_CO_20
Optional: No
Call by Reference: No ( called with pass by value option)

PROD_CATEGORY_ID_T - Product Category Description

Data type: COMM_CATGRY_CO_20_T
Optional: No
Call by Reference: No ( called with pass by value option)

PROCESS_TYPE_T - Transaction Types: Texts

Data type: CRMC_PR_TYP_CO_T
Optional: No
Call by Reference: No ( called with pass by value option)

ITEM_TYPE - Business Transaction Item Type

Data type: CRMC_IT_TYP_CO
Optional: No
Call by Reference: No ( called with pass by value option)

ITEM_TYPE_T - Item Categories: Texts

Data type: CRMC_IT_TYP_CO_T
Optional: No
Call by Reference: No ( called with pass by value option)

PARTNER - Business Partner from CRM

Data type: CRMC_PARTNER_CO
Optional: No
Call by Reference: No ( called with pass by value option)

SERVICE_ORG - Service Organization

Data type: CRMC_SVORG_CO
Optional: No
Call by Reference: No ( called with pass by value option)

SERVICE_ORG_T - Service Organization Texts

Data type: CRMC_SVORG_CO_T
Optional: No
Call by Reference: No ( called with pass by value option)

RESP_SERV_ORG - Responsible Service Organization CRM

Data type: CRMC_RSVORG_CO
Optional: No
Call by Reference: No ( called with pass by value option)

RESP_SERV_ORG_T - Responsible Service Organization CRM Texts

Data type: CRMC_RSVORG_CO_T
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

INSERT_FAILED - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for CRM_LAE_INFO_REPLICATE 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_process_type  TYPE STANDARD TABLE OF CRMC_PR_TYP_CO, "   
lv_insert_failed  TYPE CRMC_PR_TYP_CO, "   
lv_delete_existing_records  TYPE CHAR1, "   
lt_tech_serv_org  TYPE STANDARD TABLE OF CRMC_TSVORG_CO, "   
lt_tech_serv_org_t  TYPE STANDARD TABLE OF CRMC_TSVORG_CO_T, "   
lt_service_type  TYPE STANDARD TABLE OF CRMC_SRVTYP_CO, "   
lt_service_type_t  TYPE STANDARD TABLE OF CRMC_SRVTYP_CO_T, "   
lt_valuation_type  TYPE STANDARD TABLE OF CRMC_VALTYP_CO, "   
lt_valuation_type_t  TYPE STANDARD TABLE OF CRMC_VALTYP_CO_T, "   
lt_prod_category_id  TYPE STANDARD TABLE OF COMM_CATGRY_CO_20, "   
lt_prod_category_id_t  TYPE STANDARD TABLE OF COMM_CATGRY_CO_20_T, "   
lt_process_type_t  TYPE STANDARD TABLE OF CRMC_PR_TYP_CO_T, "   
lt_item_type  TYPE STANDARD TABLE OF CRMC_IT_TYP_CO, "   
lt_item_type_t  TYPE STANDARD TABLE OF CRMC_IT_TYP_CO_T, "   
lt_partner  TYPE STANDARD TABLE OF CRMC_PARTNER_CO, "   
lt_service_org  TYPE STANDARD TABLE OF CRMC_SVORG_CO, "   
lt_service_org_t  TYPE STANDARD TABLE OF CRMC_SVORG_CO_T, "   
lt_resp_serv_org  TYPE STANDARD TABLE OF CRMC_RSVORG_CO, "   
lt_resp_serv_org_t  TYPE STANDARD TABLE OF CRMC_RSVORG_CO_T. "   

  CALL FUNCTION 'CRM_LAE_INFO_REPLICATE'  "NOTRANSL: Replikation von CRM-Merkmalen für den CO-Translator
    EXPORTING
         DELETE_EXISTING_RECORDS = lv_delete_existing_records
    TABLES
         PROCESS_TYPE = lt_process_type
         TECH_SERV_ORG = lt_tech_serv_org
         TECH_SERV_ORG_T = lt_tech_serv_org_t
         SERVICE_TYPE = lt_service_type
         SERVICE_TYPE_T = lt_service_type_t
         VALUATION_TYPE = lt_valuation_type
         VALUATION_TYPE_T = lt_valuation_type_t
         PROD_CATEGORY_ID = lt_prod_category_id
         PROD_CATEGORY_ID_T = lt_prod_category_id_t
         PROCESS_TYPE_T = lt_process_type_t
         ITEM_TYPE = lt_item_type
         ITEM_TYPE_T = lt_item_type_t
         PARTNER = lt_partner
         SERVICE_ORG = lt_service_org
         SERVICE_ORG_T = lt_service_org_t
         RESP_SERV_ORG = lt_resp_serv_org
         RESP_SERV_ORG_T = lt_resp_serv_org_t
    EXCEPTIONS
        INSERT_FAILED = 1
. " CRM_LAE_INFO_REPLICATE




ABAP code using 7.40 inline data declarations to call FM CRM_LAE_INFO_REPLICATE

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!