SAP Reports / Programs

RFTBB_MATRIX_CHECK SAP ABAP Report - Checkreport for Matrix in Risk Management Evaluations







RFTBB_MATRIX_CHECK 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 RFTBB_MATRIX_CHECK into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFTBB_MATRIX_CHECK. "Basic submit
SUBMIT RFTBB_MATRIX_CHECK AND RETURN. "Return to original report after report execution complete
SUBMIT RFTBB_MATRIX_CHECK VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_CAL = Calendar
Selection Text: P_CORR = Check Correlation Matrix
Selection Text: P_COVA = Check Covariance Matrix
Selection Text: P_CURR = D .
Selection Text: P_DATUM = Start Date
Selection Text: P_KORART = Correlation Type
Selection Text: P_OFFSET = D .
Selection Text: P_RHID = D .
Selection Text: P_RHNODE = D .
Selection Text: P_VOLART = D .
Title: Checkreport for Matrix in Risk Management Evaluations
Text Symbol: COR = Correlation
Text Symbol: DAT = Date
Text Symbol: VAL = Value


INCLUDES used within this REPORT RFTBB_MATRIX_CHECK

INCLUDE RFTBB_MATRIX_CHECKTOP.
INCLUDE RFTBB_MATRIX_CHECKO01.
INCLUDE RFTBB_MATRIX_CHECKI01.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

ISB_RM_RH_NODE_HELP CALL FUNCTION 'ISB_RM_RH_NODE_HELP' EXPORTING i_progname = sy-cprog i_dynpro_number = sy-dynnr i_fieldname_rh = 'P_RHID' i_fieldname_rknoten = 'P_RHNODE' " vorgegebener RH-Knoten IMPORTING e_rknoten = p_rhnode " ausgewählter RH-Knoten EXCEPTIONS internal_error = 1 OTHERS = 2.

MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.

CHECK_TREE_RISK_NEW CALL FUNCTION 'CHECK_TREE_RISK_NEW' EXPORTING m_rhid = p_rhid text_flag = space IMPORTING error_flag = gv_err_flag EXCEPTIONS not_found = 1 OTHERS = 2.

ISB_RM_RH_GET CALL FUNCTION 'ISB_RM_RH_GET' EXPORTING p_rhid = p_rhid rh_datum = p_datum IMPORTING w_jbrrh = gw_jbrrh TABLES it_jbrrhbaum_f = gt_knt it_jbrrhblatt_f = gt_rh_nodes EXCEPTIONS no_hierarchy_found = 1 OTHERS = 2.

TV_VOLART_CALCART_READ CALL FUNCTION 'TV_VOLART_CALCART_READ' EXPORTING volart = p_volart importing W_VCALC = ls_vcalc EXCEPTIONS no_volart = 1 no_calcart = 2 OTHERS = 3.

TV_KORART_CALCART_READ CALL FUNCTION 'TV_KORART_CALCART_READ' EXPORTING korart = p_korart EXCEPTIONS no_korart = 1.

RM_INITIALIZE_BUFFER CALL FUNCTION 'RM_INITIALIZE_BUFFER' EXPORTING aktdatum = p_datum gueldatum = p_datum.

RM_CHECK_BUILD_CORR_MATRIX CALL FUNCTION 'RM_CHECK_BUILD_CORR_MATRIX' EXPORTING iv_validity_date = p_datum iv_correlation_type = p_korart it_rhnodes = gt_rh_nodes iv_calendar = p_cal iv_term = p_offset IMPORTING et_matrix = gt_matrix.

RM_CHECK_BUILD_COVA_MATRIX CALL FUNCTION 'RM_CHECK_BUILD_COVA_MATRIX' EXPORTING iv_validity_date = p_datum iv_volatility_type = p_volart iv_correlation_type = p_korart it_rhnodes = gt_rh_nodes iv_calendar = p_cal iv_term = p_offset IMPORTING et_matrix = gt_matrix.

RM_CHECK_CORRELATION_MATRIX CALL FUNCTION 'RM_CHECK_CORRELATION_MATRIX' EXPORTING iv_validity_date = p_datum iv_calendar = p_cal it_rhnodes = gt_rh_nodes it_matrix = gt_matrix IMPORTING et_matrix = gt_matrix_new ev_highest_date = gv_date_high.

MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW'.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFTBB_MATRIX_CHECK or its description.