SAP Reports / Programs

CNV_TDMS_BW_PARTITION_COMPARE SAP ABAP Report - Create partitions in BI Receiver system







CNV_TDMS_BW_PARTITION_COMPARE 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 CNV_TDMS_BW_PARTITION_COMPARE 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 CNV_TDMS_BW_PARTITION_COMPARE. "Basic submit
SUBMIT CNV_TDMS_BW_PARTITION_COMPARE AND RETURN. "Return to original report after report execution complete
SUBMIT CNV_TDMS_BW_PARTITION_COMPARE 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_PACK = Package ID
Title: Create partitions in BI Receiver system
Text Symbol: 003 = Following partitions could not be created
Text Symbol: 004 = Following partitions have been created
Text Symbol: 005 = No ODS Objects are partitioned in the sender system
Text Symbol: 006 = No InfoCubes are partitioned in the sender system
Text Symbol: 007 = No InfoObjects are partitioned in the sender system
Text Symbol: 008 = No Other Tables are partitioned in the sender system
Text Symbol: 009 = No PSAs are partitioned in the sender system
Text Symbol: 010 = No partitions are created in the receiver system
Text Symbol: 011 = Partition Creation failed


INCLUDES used within this REPORT CNV_TDMS_BW_PARTITION_COMPARE

INCLUDE CNV_MBT_SM_PARAMS.
INCLUDE CNV_MBT_SM_MACROS.
INCLUDE CNV_TDMS_PROTMESS_TOP.


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:

CNV_TDMS_SET_GET_STATE CALL FUNCTION 'CNV_TDMS_SET_GET_STATE' EXPORTING gd_packid = p_pack gd_phase = p_phase gd_act_id = p_act_id EXCEPTIONS insert_error = 1 rfc_error = 2 OTHERS = 3.

CNV_MBT_RFC_GET CALL FUNCTION 'CNV_MBT_RFC_GET' EXPORTING packid = p_pack exec_target = 'S' IMPORTING destination_id = gv_dest_sender EXCEPTIONS no_destinations_for_packid = 1 no_specific_destination_type = 2 OTHERS = 3.

CNV_MBT_RFC_GET CALL FUNCTION 'CNV_MBT_RFC_GET' EXPORTING packid = p_pack exec_target = 'R' IMPORTING destination_id = gv_dest_receiver EXCEPTIONS no_destinations_for_packid = 1 no_specific_destination_type = 2 OTHERS = 3.

CNV_TDMS_BW_GET_PARTITION_INFO CALL FUNCTION 'CNV_TDMS_BW_GET_PARTITION_INFO' DESTINATION gv_dest_sender TABLES it_allobj = lt_allobj_SND[] et_partition_info = lt_part_info_snd[] EXCEPTIONS communication_failure = 98 system_failure = 99 others = 3.

CNV_TDMS_BW_GET_PARTITION_INFO CALL FUNCTION 'CNV_TDMS_BW_GET_PARTITION_INFO' DESTINATION gv_dest_RECEIVER TABLES it_allobj = Lt_allobj_RCV[] et_partition_info = lt_part_info_rcv[] EXCEPTIONS communication_failure = 98 system_failure = 99 others = 3.

CNV_TDMS_BW_GET_PARTITION_INFO CALL FUNCTION 'CNV_TDMS_BW_GET_PARTITION_INFO' DESTINATION gv_dest_sender TABLES it_allobj = it_allobj[] et_partition_info = lt_part_info_snd[] EXCEPTIONS communication_failure = 98 system_failure = 99 others = 3.

CNV_TDMS_BW_GET_PARTITION_INFO CALL FUNCTION 'CNV_TDMS_BW_GET_PARTITION_INFO' DESTINATION gv_dest_receiver TABLES it_allobj = it_allobj[] et_partition_info = lt_part_info_rcv[] EXCEPTIONS communication_failure = 98 system_failure = 99.

CNV_TDMS_BW_ADD_PARTITION CALL FUNCTION 'CNV_TDMS_BW_ADD_PARTITION' DESTINATION gv_dest_receiver TABLES it_add_part_info = xt_part_added[] et_add_part_failed = xt_part_failed[] EXCEPTIONS communication_failure = 1 system_failure = 2 RESOURCE_FAILURE = 3.

CNV_MBT_PACK_ACTIVE_CHECK call function 'CNV_MBT_PACK_ACTIVE_CHECK' EXPORTING packid = p_pack EXCEPTIONS packid_does_not_exist = 1 packid_is_not_active = 2 subproject_invalid_or_initial = 3 others = 4.

CNV_MBT_ADM_PACKAGE_INFO call function 'CNV_MBT_ADM_PACKAGE_INFO' EXPORTING packid = p_pack IMPORTING mtid = gv_mtid EXCEPTIONS packid_does_not_exist = 1 others = 2.



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 CNV_TDMS_BW_PARTITION_COMPARE or its description.