RBCA_US_HOLDS_RELEASE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Principle of dual control for Permanent Holds The report lists all eligible accounts for which the release process was triggered...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RBCA_US_HOLDS_RELEASE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
F9HLDREL - Release Holds requiring Dual Control
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: S_RELST = D Release Status
Selection Text: S_PRODCT = D Product
Selection Text: S_DSTRT = D Withdrawal Period Start
Selection Text: S_DEND = D Withdrawal Period End
Selection Text: S_BKKRS = D Bank Area
Selection Text: S_ACEXT = D Account number
Selection Text: P_VARI = D Layout
Title: Holds Release
Text Symbol: H03 = Date
Text Symbol: H02 = Holds to release
Text Symbol: H01 = Bank Area
Text Symbol: B03 = List Structure
Text Symbol: B01 = General Selections
Text Symbol: 200 = Save Data?
Text Symbol: 102 = Enterer
Text Symbol: 101 = Entered By
Text Symbol: 100 = Hold Entered By
Text Symbol: 005 = Rejected
Text Symbol: 004 = Released
Text Symbol: 003 = Edit
Text Symbol: 002 = No
Text Symbol: 001 = Yes
INCLUDE IBKKCON.
INCLUDE IBKKCONK.
INCLUDE IBKKCOGG.
INCLUDE IBKKMAC.
INCLUDE IBCA_US_HOLD_CON.
INCLUDE IBCA_US_HOLDS_RELEASE_S01.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING is_variant = ls_variant i_save = 'A' i_display_via_grid = 'X' IMPORTING e_exit = l_exit es_variant = cs_disvariant EXCEPTIONS not_found = 1 program_error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.