RECVBP_COPCONF 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 RECVBP_COPCONF into the relevant SAP transactions such as SE38 or SE80
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: X_CONF = Source configuration
Selection Text: X_DEST = Target configuration
Selection Text: X_NSPACE = Namespace
Title: Copy customer overview configurations
Text Symbol: A01 = Configuration
Text Symbol: A02 = Language
INCLUDE IEBAMAC1.
No SAP DATABASE tables are accessed within this REPORT code!
TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING * WI_ORDER = ' ' WI_KO200 = W_KO200 * importing * we_order = * we_task = * we_ko200 = * es_tadir = TABLES WT_E071K = IE071K EXCEPTIONS OTHERS = 99.
TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING WI_KO200 = W_KO200 * importing * we_order = * we_task = * we_ko200 = * we_object_appendable = * es_tadir = TABLES WT_E071K = IE071K EXCEPTIONS CANCEL_EDIT_OTHER_ERROR = 1 SHOW_ONLY_OTHER_ERROR = 2 OTHERS = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.