SAP CRM_CRD_TEXT_EXT_CREATE Function Module for
CRM_CRD_TEXT_EXT_CREATE is a standard crm crd text ext create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 crd text ext create FM, simply by entering the name CRM_CRD_TEXT_EXT_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: CRM_CRD_BW_EXT_GENERATION
Program Name: SAPLCRM_CRD_BW_EXT_GENERATION
Main Program: SAPLCRM_CRD_BW_EXT_GENERATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CRM_CRD_TEXT_EXT_CREATE 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_CRD_TEXT_EXT_CREATE'".
EXPORTING
I_APPL_ID = "
I_PARENT_KEY = "
* I_DFIES = "
I_FRGTYPE_ID = "
I_DOMNAME = "
I_APPLNAME = "
* I_DEVCLASS = '$TMP' "
I_FLAG_CREATE = "
* I_CONTEXT = ' ' "
* I_NAME' ' = '' "
* I_NAME' '_SHORT = '' "
IMPORTING
E_DSOURCE_NAME = "
TABLES
* ET_OBJECT_NEW = "
EXCEPTIONS
DOMAIN_NOT_FOUND = 1 DATASOURCE_GENERATION_ERROR = 2 DATASOURCE_EXISTS = 3 DOMAIN_HAS_NO_VALUES = 4 TEXT_TABLE_NOT_EXISTING = 5
IMPORTING Parameters details for CRM_CRD_TEXT_EXT_CREATE
I_APPL_ID -
Data type: COMT_CRD_GEN_BW_APPL_IDOptional: No
Call by Reference: Yes
I_PARENT_KEY -
Data type: COMT_GOX_PARENT_GUIDOptional: No
Call by Reference: Yes
I_DFIES -
Data type: DFIESOptional: Yes
Call by Reference: Yes
I_FRGTYPE_ID -
Data type: COMT_CRD_GEN_BW_SET_TYPEOptional: No
Call by Reference: Yes
I_DOMNAME -
Data type: DOMNAMEOptional: No
Call by Reference: Yes
I_APPLNAME -
Data type: ROAPPLROptional: No
Call by Reference: Yes
I_DEVCLASS -
Data type: DEVCLASSDefault: '$TMP'
Optional: No
Call by Reference: Yes
I_FLAG_CREATE -
Data type: XFELDOptional: No
Call by Reference: Yes
I_CONTEXT -
Data type: COMT_CRD_GEN_BW_CONTEXTDefault: ' '
Optional: No
Call by Reference: Yes
I_NAMESPACE -
Data type: NAMESPACEDefault: ''
Optional: No
Call by Reference: Yes
I_NAMESPACE_SHORT -
Data type: OXT_NSPC_SHORTDefault: ''
Optional: No
Call by Reference: Yes
EXPORTING Parameters details for CRM_CRD_TEXT_EXT_CREATE
E_DSOURCE_NAME -
Data type: ROOSOURCEROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CRM_CRD_TEXT_EXT_CREATE
ET_OBJECT_NEW -
Data type: COMT_GOX_DEF_HEADEROptional: Yes
Call by Reference: Yes
EXCEPTIONS details
DOMAIN_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DATASOURCE_GENERATION_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DATASOURCE_EXISTS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DOMAIN_HAS_NO_VALUES -
Data type:Optional: No
Call by Reference: Yes
TEXT_TABLE_NOT_EXISTING -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for CRM_CRD_TEXT_EXT_CREATE 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_i_appl_id | TYPE COMT_CRD_GEN_BW_APPL_ID, " | |||
| lt_et_object_new | TYPE STANDARD TABLE OF COMT_GOX_DEF_HEADER, " | |||
| lv_e_dsource_name | TYPE ROOSOURCER, " | |||
| lv_domain_not_found | TYPE ROOSOURCER, " | |||
| lv_i_parent_key | TYPE COMT_GOX_PARENT_GUID, " | |||
| lv_i_dfies | TYPE DFIES, " | |||
| lv_i_frgtype_id | TYPE COMT_CRD_GEN_BW_SET_TYPE, " | |||
| lv_datasource_generation_error | TYPE COMT_CRD_GEN_BW_SET_TYPE, " | |||
| lv_i_domname | TYPE DOMNAME, " | |||
| lv_datasource_exists | TYPE DOMNAME, " | |||
| lv_i_applname | TYPE ROAPPLR, " | |||
| lv_domain_has_no_values | TYPE ROAPPLR, " | |||
| lv_i_devclass | TYPE DEVCLASS, " '$TMP' | |||
| lv_text_table_not_existing | TYPE DEVCLASS, " | |||
| lv_i_flag_create | TYPE XFELD, " | |||
| lv_i_context | TYPE COMT_CRD_GEN_BW_CONTEXT, " ' ' | |||
| lv_i_namespace | TYPE NAMESPACE, " '' | |||
| lv_i_namespace_short | TYPE OXT_NSPC_SHORT. " '' |
|   CALL FUNCTION 'CRM_CRD_TEXT_EXT_CREATE' " |
| EXPORTING | ||
| I_APPL_ID | = lv_i_appl_id | |
| I_PARENT_KEY | = lv_i_parent_key | |
| I_DFIES | = lv_i_dfies | |
| I_FRGTYPE_ID | = lv_i_frgtype_id | |
| I_DOMNAME | = lv_i_domname | |
| I_APPLNAME | = lv_i_applname | |
| I_DEVCLASS | = lv_i_devclass | |
| I_FLAG_CREATE | = lv_i_flag_create | |
| I_CONTEXT | = lv_i_context | |
| I_NAMESPACE | = lv_i_namespace | |
| I_NAMESPACE_SHORT | = lv_i_namespace_short | |
| IMPORTING | ||
| E_DSOURCE_NAME | = lv_e_dsource_name | |
| TABLES | ||
| ET_OBJECT_NEW | = lt_et_object_new | |
| EXCEPTIONS | ||
| DOMAIN_NOT_FOUND = 1 | ||
| DATASOURCE_GENERATION_ERROR = 2 | ||
| DATASOURCE_EXISTS = 3 | ||
| DOMAIN_HAS_NO_VALUES = 4 | ||
| TEXT_TABLE_NOT_EXISTING = 5 | ||
| . " CRM_CRD_TEXT_EXT_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM CRM_CRD_TEXT_EXT_CREATE
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.| DATA(ld_i_devclass) | = '$TMP'. | |||
| DATA(ld_i_context) | = ' '. | |||
| DATA(ld_i_namespace) | = ''. | |||
| DATA(ld_i_namespace_short) | = ''. | |||
Search for further information about these or an SAP related objects