SAP Reports / Programs

COM_DS_GENERATE_IL SAP ABAP Report - CRM CRD: Generating DataSources for an Interlinkage







COM_DS_GENERATE_IL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter COM_DS_GENERATE_IL into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT COM_DS_GENERATE_IL. "Basic submit
SUBMIT COM_DS_GENERATE_IL AND RETURN. "Return to original report after report execution complete
SUBMIT COM_DS_GENERATE_IL VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_DEL = Delete Objects
Selection Text: P_INS = Generate Objects
Selection Text: P_REL = D Relationship Type
Selection Text: P_TRA = Transport Objects
Title: CRM CRD: Generating DataSources for an Interlinkage


INCLUDES used within this REPORT COM_DS_GENERATE_IL

INCLUDE COM_DS_GENERATE_CONSTANTS.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

COM_IL_CUST_RELTYPE_READ CALL FUNCTION 'COM_IL_CUST_RELTYPE_READ' EXPORTING iv_reltype = p_rel IMPORTING et_reltype = lt_reltype EXCEPTIONS OTHERS = 0.

CRM_CRD_APPL_DETERMINE_IL CALL FUNCTION 'CRM_CRD_APPL_DETERMINE_IL' IMPORTING et_appl_id = lt_appl_id EXCEPTIONS OTHERS = 0.

CRM_CRD_BW_OBJ_READ_BY_TYPE CALL FUNCTION 'CRM_CRD_BW_OBJ_READ_BY_TYPE' EXPORTING i_object_type_il = lv_object_type_source IMPORTING e_object_id = lv_object_id_source EXCEPTIONS object_not_found = 1 OTHERS = 2.

CRM_CRD_BW_OBJ_READ_BY_TYPE CALL FUNCTION 'CRM_CRD_BW_OBJ_READ_BY_TYPE' EXPORTING i_object_type_il = lv_object_type_destin IMPORTING e_object_id = lv_object_id_destin EXCEPTIONS object_not_found = 1 OTHERS = 2.

CRM_CRD_BW_APPL_INTERFACE CALL FUNCTION 'CRM_CRD_BW_APPL_INTERFACE' EXPORTING i_appl_id = ls_appl_id i_frgtype_id = lv_reltype i_flag_attr_ext_create = gc_x i_flag_text_ext_create = gc_x i_update_type = lv_update_type it_objects_plus_usage = lt_objects IMPORTING e_viewname = lv_viewname e_strucname = lv_strucname e_dsource_attr = lv_dsource_attr e_progname = lv_progname TABLES et_dsource_text = lt_dsource_text EXCEPTIONS create_error = 1 delete_error = 2 frgtype_not_bw_relevant = 3 wrong_update_type = 4 not_generated_objects_found = 5 OTHERS = 6.

CRM_CRD_TRANSPORT_DS_COMPLETE CALL FUNCTION 'CRM_CRD_TRANSPORT_DS_COMPLETE' EXPORTING i_appl_id = ls_appl_id i_frgtype_id = lv_reltype * I_DEVCLASS_OLD = '$TMP' * i_devclass_new = * i_corrnum = EXCEPTIONS OTHERS = 0.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name COM_DS_GENERATE_IL or its description.