SEM_MENU_TCODE_DISPATCH 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 SEM_MENU_TCODE_DISPATCH into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
UG_BW_RSDODSD - ODS Object
UG_BW_RSDMWB - Data Mining Workbench
UG_BW_RSDMPROM - MultiProvider
UG_BW_RSDMD - Master Data
UG_BW_RSDCUBE - InfoCube
UG_BW_RSD1 - Edit InfoObject
UG_BW_RSBBS - Maintain BW Senders/Receivers
UG_BW_RSA1 - Admin Workbench: Modeling
UG_BW_RRMX - Analyzer
UG_BW_RRC3 - Display Currency Translation Type
UG_BW_RRC2 - Edit Currency Translation Type
UG_BW_RRC1 - Create Currency Translation Type
UG_BW_PFCG - Maintain Roles
UG_BW_RSH1 - Hierarchies
UK_BCS_CXBCS20 - Consolidation (EC-CS)
UG_SEM_BEX - Business Explorer Analyzer
UG_BW_SPRO - Customizing
UG_BW_SMICM - ICM Monitor
UG_BW_RSZV - Maintain Variables
UG_BW_RSZDELETE - Delete Query Objects
UG_BW_RSZC - Copy Queries Between InfoCubes
UG_BW_RSSM - Authorizations for Reporting
UG_BW_RSRV - Analysis Tool
UG_BW_RSRTRACE - Trace Tool
UG_BW_RSRT1 - Query Monitor
UG_BW_RSRCACHE - OLAP: Cache Monitor
UG_BW_RSQ11 - InfoSet Query: Web Reporting
UG_BW_RSQ10 - SAP Query: Role Administration
UG_BW_RSQ02 - Maintain InfoSets
UG_BW_RSPRCONF - Print Settings
UG_BW_RSPR - Print Jobs
UG_BW_RSPC - Process Chains
UG_BW_RSORMDR - Admin Workbench: Metadata Repository
UG_BW_RSORBCT - Admin Workbench: Business Content
UG_BW_RSISET - InfoSet
UG_BW_RSMON - Admin Workbench: Monitoring
UG_BW_RSMO - Monitor
UG_BW_RSIC - InfoCatalog
UG_BW_RSKC - Maintain Permitted Extra Characters
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.
Title: Program UG_TRNCTN_DISPATCH
Text Symbol: 100 = Local BW System
Text Symbol: 002 = Error
Text Symbol: 001 = Unknown transaction code
Text Symbol: 000 = Transaction call up refused
INCLUDE SEMMENUF01.
No SAP DATABASE tables are accessed within this REPORT code!
RSAH_LAUNCH_EXCEL CALL FUNCTION 'RSAH_LAUNCH_EXCEL' DESTINATION l_dest EXCEPTIONS OTHERS = 1.
ABAP4_CALL_TRANSACTION * CALL FUNCTION 'ABAP4_CALL_TRANSACTION' DESTINATION l_dest * EXPORTING * tcode = l_transaction ** SKIP_SCREEN = ' ' ** MODE_VAL = 'A' ** UPDATE_VAL = 'A' * IMPORTING * subrc = l_subrc ** TABLES ** USING_TAB = ** SPAGPA_TAB = ** MESS_TAB = * EXCEPTIONS * call_transaction_denied = 1 * tcode_invalid = 2 * OTHERS = 3.
TH_REMOTE_TRANSACTION call function 'TH_REMOTE_TRANSACTION' exporting tcode = l_transaction dest = l_name IMPORTING COMM_MESSAGE = l_error SYST_MESSAGE = l_error.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.