SAP CRM_CRD_BW_OBJ_READ_COMPLETE Function Module for









CRM_CRD_BW_OBJ_READ_COMPLETE is a standard crm crd bw obj read complete 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 bw obj read complete FM, simply by entering the name CRM_CRD_BW_OBJ_READ_COMPLETE into the relevant SAP transaction such as SE37 or SE38.

Function Group: CRM_CRD_BW_CUSTOMIZING
Program Name: SAPLCRM_CRD_BW_CUSTOMIZING
Main Program: SAPLCRM_CRD_BW_CUSTOMIZING
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CRM_CRD_BW_OBJ_READ_COMPLETE 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_BW_OBJ_READ_COMPLETE'"
EXPORTING
I_APPL_ID = "
I_OBJECT_ID = "
I_OBJECT_USAGE = "

IMPORTING
E_COMC_CRD_GEN_BWB = "
E_COMC_CRD_GEN_BWG = "

TABLES
* ET_COMC_CRD_GEN_BWH = "
* ET_COMC_CRD_GEN_BWE = "
* ET_COMC_CRD_GEN_BWK = "

EXCEPTIONS
APPL_NOT_FOUND = 1 OBJECT_NOT_FOUND = 2 USAGE_NOT_FOUND = 3
.



IMPORTING Parameters details for CRM_CRD_BW_OBJ_READ_COMPLETE

I_APPL_ID -

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

I_OBJECT_ID -

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

I_OBJECT_USAGE -

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

EXPORTING Parameters details for CRM_CRD_BW_OBJ_READ_COMPLETE

E_COMC_CRD_GEN_BWB -

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

E_COMC_CRD_GEN_BWG -

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

TABLES Parameters details for CRM_CRD_BW_OBJ_READ_COMPLETE

ET_COMC_CRD_GEN_BWH -

Data type: COMC_CRD_GEN_BWH
Optional: Yes
Call by Reference: Yes

ET_COMC_CRD_GEN_BWE -

Data type: COMC_CRD_GEN_BWE
Optional: Yes
Call by Reference: Yes

ET_COMC_CRD_GEN_BWK -

Data type: COMC_CRD_GEN_BWK
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

APPL_NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

OBJECT_NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

USAGE_NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CRM_CRD_BW_OBJ_READ_COMPLETE 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, "   
lv_appl_not_found  TYPE COMT_CRD_GEN_BW_APPL_ID, "   
lv_e_comc_crd_gen_bwb  TYPE COMC_CRD_GEN_BWB, "   
lt_et_comc_crd_gen_bwh  TYPE STANDARD TABLE OF COMC_CRD_GEN_BWH, "   
lv_i_object_id  TYPE COMT_CRD_GEN_BW_OBJECT_ID, "   
lv_object_not_found  TYPE COMT_CRD_GEN_BW_OBJECT_ID, "   
lv_e_comc_crd_gen_bwg  TYPE COMC_CRD_GEN_BWG, "   
lt_et_comc_crd_gen_bwe  TYPE STANDARD TABLE OF COMC_CRD_GEN_BWE, "   
lv_i_object_usage  TYPE COMT_CRD_GEN_BW_OBJECT_USAGE, "   
lv_usage_not_found  TYPE COMT_CRD_GEN_BW_OBJECT_USAGE, "   
lt_et_comc_crd_gen_bwk  TYPE STANDARD TABLE OF COMC_CRD_GEN_BWK. "   

  CALL FUNCTION 'CRM_CRD_BW_OBJ_READ_COMPLETE'  "
    EXPORTING
         I_APPL_ID = lv_i_appl_id
         I_OBJECT_ID = lv_i_object_id
         I_OBJECT_USAGE = lv_i_object_usage
    IMPORTING
         E_COMC_CRD_GEN_BWB = lv_e_comc_crd_gen_bwb
         E_COMC_CRD_GEN_BWG = lv_e_comc_crd_gen_bwg
    TABLES
         ET_COMC_CRD_GEN_BWH = lt_et_comc_crd_gen_bwh
         ET_COMC_CRD_GEN_BWE = lt_et_comc_crd_gen_bwe
         ET_COMC_CRD_GEN_BWK = lt_et_comc_crd_gen_bwk
    EXCEPTIONS
        APPL_NOT_FOUND = 1
        OBJECT_NOT_FOUND = 2
        USAGE_NOT_FOUND = 3
. " CRM_CRD_BW_OBJ_READ_COMPLETE




ABAP code using 7.40 inline data declarations to call FM CRM_CRD_BW_OBJ_READ_COMPLETE

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!