RCCMREP07 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 RCCMREP07 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
RCCMREP07 - Document Flow Report
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: Display Document Flow
Text Symbol: 002 = Plane Type
Text Symbol: 005 = Details
Text Symbol: 007 = Document
Text Symbol: 008 = Display:
Text Symbol: 009 = ALV TREE
Text Symbol: 010 = Doc flow
INCLUDE CCM_GRID1_DND_TREE_TOP.
INCLUDE CCM_GRID1_DND_TREE_01.
INCLUDE CCM_GRID1_DND_TREE_02.
INCLUDE CCM_GRID1_DND_TREE_F01.
No SAP DATABASE tables are accessed within this REPORT code!
RH_DETERMINE_ORG_OBJID * CALL FUNCTION 'RH_DETERMINE_ORG_OBJID' * EXPORTING * ORG_OBJECT_TYPE = 'O' ** SET_MODE = ** ORG_OTYPE_TEXT = ** ACT_PLVAR = ** ACT_SEARCH_STRING = '*' ** SELECTED_OBJ_APPEND = * F4_MODE = 'X' * IMPORTING * ORG_OBJECT_OBJID = LEVEL1 ** tables ** selected_objects = * EXCEPTIONS * NO_ACTIVE_PLVAR = 1 * NO_OBJECT_ID_SELECTED = 2 * OTHERS = 3.
RH_DETERMINE_ORG_OBJID CALL FUNCTION 'RH_DETERMINE_ORG_OBJID' EXPORTING ORG_OBJECT_TYPE = 'O' * SET_MODE = * ORG_OTYPE_TEXT = * ACT_PLVAR = * ACT_SEARCH_STRING = '*' * SELECTED_OBJ_APPEND = F4_MODE = 'X' IMPORTING ORG_OBJECT_OBJID = LEVEL1 * tables * selected_objects = EXCEPTIONS NO_ACTIVE_PLVAR = 1 NO_OBJECT_ID_SELECTED = 2 OTHERS = 3.
RH_DETERMINE_ORG_OBJID CALL FUNCTION 'RH_DETERMINE_ORG_OBJID' EXPORTING ORG_OBJECT_TYPE = 'O' * SET_MODE = * ORG_OTYPE_TEXT = * ACT_PLVAR = * ACT_SEARCH_STRING = '*' * SELECTED_OBJ_APPEND = F4_MODE = 'X' IMPORTING ORG_OBJECT_OBJID = LEVEL1 * tables * selected_objects = EXCEPTIONS NO_ACTIVE_PLVAR = 1 NO_OBJECT_ID_SELECTED = 2 OTHERS = 3.
SREL_GET_NEXT_RELATIONS CALL FUNCTION 'SREL_GET_NEXT_RELATIONS' EXPORTING OBJECT = CONT_TAB-VALUE * ROLETYPE = * RELATIONTYPE = MAX_HOPS = 1 TABLES LINKS = LINKS ROLES = ROLES * EXCEPTIONS * INTERNAL_ERROR = 1 * OTHERS = 2 .
SWO_TEXT_OBJTYPE CALL FUNCTION 'SWO_TEXT_OBJTYPE' EXPORTING * LANGUAGE = SY-LANGU OBJTYPE = LINKS-OBJTYPE_B IMPORTING * KEYWORD = SHORTTEXT = BUSINESS_OBJECT .
CIC_USERS_WITH_PROFILES CALL FUNCTION 'CIC_USERS_WITH_PROFILES' EXPORTING OBJID = LEVEL1ORGS-ORG TABLES ORGSTRUC = AGT_TAB ORGSTRUCPROF = PROFILE_TAB EXCEPTIONS PROFILES_NOT_FOUND = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.