SRMMDM_CTR_TRANSFER 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 SRMMDM_CTR_TRANSFER into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SRMMDM_CTR_TRANSFER - Transfer Contracts
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.
Selection Text: INC_CLSD = Including Closed
Selection Text: PREVIEW = Preview Only
Selection Text: SBUPA = D .
Selection Text: SDATE = Valid From
Selection Text: SELOBJID = Contract Number
Title: Transfer Contracts
Text Symbol: 001 = Number of selected contracts:
Text Symbol: 002 = * Only released contracts transferred
001 Type ObjectID Valid from Valid To Supplier Supplier Name
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BBP_PD_CTR_GETLIST CALL FUNCTION 'BBP_PD_CTR_GETLIST' EXPORTING * time dependency i_valid_from = sdate-low "val_from i_valid_until = sdate-high "val_to * including closed i_with_closed = inc_clsd TABLES * INPUT: selection for business partners (vendors/suppliers) i_partners = lt_partners i_range_object_id = selobjid * OUTPUT e_pdlist = lt_pdlist_tmp e_messages = lt_messages.
BBP_PD_CTR_GETLIST CALL FUNCTION 'BBP_PD_CTR_GETLIST' EXPORTING * time dependency i_valid_from = sdate-low "val_from i_valid_until = sdate-high "val_to * including closed i_with_closed = inc_clsd TABLES * INPUT: selection for business partners (vendors/suppliers) i_partners = lt_partners "deactivated because of the aboove reason i_range_object_id = selobjid * OUTPUT e_pdlist = lt_pdlist e_messages = lt_messages.
SAPGUI_PROGRESS_INDICATOR * CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' * EXPORTING * percentage = lv_percentage * text = ls_pd-object_id.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = lv_percentage text = ls_pd-object_id.
BBP_PD_CTR_TRANSFER CALL FUNCTION 'BBP_PD_CTR_TRANSFER' EXPORTING iv_header_guid = '00000000000000000000000000000000' iv_object_id = ls_pd-object_id iv_dist_set_guid = '00000000000000000000000000000000'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.