RHCALE00 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 RHCALE00 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: SEL_BOX1 = Billing Document
Selection Text: SEL_BOX2 = Cost Transfer Posting
Selection Text: SEL_BOX3 = Activity Allocation
Selection Text: SEL_BOX4 = Materials Management
Title: Check VM-ALE Scenarios
Text Symbol: 012 = Check: Customizing
Text Symbol: 011 = Entry Exists (
Text Symbol: 010 = Program Terminated
Text Symbol: 009 = Integration: NO
Text Symbol: 008 = Integration: YES
Text Symbol: 007 = Different from Standard (
Text Symbol: 006 = Not Maintained (Required)
Text Symbol: 005 = Has Default Value (
Text Symbol: 004 = Cost Transfer Posting
Text Symbol: 003 = Billing Document
Text Symbol: 002 = Message Does Not Exist
Text Symbol: 001 = Scenario
Text Symbol: 013 = Check Distribution Model
Text Symbol: 023 = Materials Management
Text Symbol: 022 = Activity Allocation
Text Symbol: 020 = (Method is Obsolete)
Text Symbol: 017 = Check: Distribution Model (Not Distributed)
Text Symbol: 016 = Object
Text Symbol: 015 = Distributed in System
Text Symbol: 014 = Not Distributed
INCLUDE RHCALETOP.
INCLUDE SBAL_CONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
BAL_DSP_PROFILE_DETLEVEL_GET CALL FUNCTION 'BAL_DSP_PROFILE_DETLEVEL_GET' IMPORTING e_s_display_profile = l_s_display_profile EXCEPTIONS OTHERS = 1.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING * I_LOG_HANDLE = i_s_msg = l_s_msg EXCEPTIONS log_not_found = 0 OTHERS = 1.
BAL_DB_SEARCH CALL FUNCTION 'BAL_DB_SEARCH' EXPORTING i_s_log_filter = l_s_log_filter IMPORTING e_t_log_header = l_t_log_header EXCEPTIONS OTHERS = 1.
BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_log_header = l_t_log_header EXCEPTIONS OTHERS = 1.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = l_s_display_profile EXCEPTIONS OTHERS = 1.
BAL_DB_DELETE CALL FUNCTION 'BAL_DB_DELETE' EXPORTING i_t_logs_to_delete = l_t_log_header EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.