RFKK_SECURITY_RELEASE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this report to release several security deposits for return simultaneously...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 RFKK_SECURITY_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
FPRL - Release Cash Security Deposit
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: ACCOUNT = Contract Account
Selection Text: REL_DATE = Return Date
Selection Text: X_SIMU = Simulation Run
Title: Release Securities for Contract Accounts
Text Symbol: 010 = Simulation Result: Security Deposits to be Released
Text Symbol: 020 = Update Run: Security Deposits Released
Text Symbol: A01 = Selection Options
Text Symbol: A02 = Processing Options
INCLUDE RFKK_SECURITY_RELEASE_FORM.
No SAP DATABASE tables are accessed within this REPORT code!
FKK_READ_SECONDARY_INDICES CALL FUNCTION 'FKK_READ_SECONDARY_INDICES' EXPORTING x_table_name = co_table x_fieldname = co_field TABLES ty_dd17s = tl_dd17s.
FKK_DB_CASH_SECURITY_STATUS_NW CALL FUNCTION 'FKK_DB_CASH_SECURITY_STATUS_NW' EXPORTING x_security = tl_fkk_sec-security IMPORTING y_status = it_stat-c_status y_status_txt = it_stat-status_txt y_request_sum = it_stat-request y_paid_sum = it_stat-paid y_released_sum = it_stat-released y_vtref = it_stat-vtref EXCEPTIONS not_found = 1 OTHERS = 2.
FKK_S_CASH_SEC_REFUND_CHECK CALL FUNCTION 'FKK_S_CASH_SEC_REFUND_CHECK' EXPORTING i_fkk_sec = tl_fkk_sec * i_check_return_date = 'X' " not needed !! i_check_credit_worth = 'X' i_check_event_0870 = 'X' IMPORTING e_rel_allowed = h_rel_allowed.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = wa_repid i_internal_tabname = 'T_STAT' i_structure_name = 'FKK_SEC_D' CHANGING ct_fieldcat = it_fieldcat_all[].
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = wa_repid * i_callback_pf_status_set = 'SET_PF_STATUS' i_callback_user_command = 'USER_COMMAND' it_fieldcat = it_fieldcat[] is_layout = wa_layout it_events = it_events[] * is_variant = w_variant i_save = 'A' TABLES t_outtab = it_stat[].
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFKK_SECURITY_RELEASE - Release Securities for Contract Accounts RFKK_SECURITY_RELEASE - Release Securities for Contract Accounts RFKK_SECURITY_FOR_PARTNER - Overview of Security Deposits RFKK_SECURITY_FOR_PARTNER - Overview of Security Deposits RFKK_SECURITY_FOR_GUARANTOR - Overview of Securities for a Guarantor RFKK_SECURITY_FOR_GUARANTOR - Overview of Securities for a Guarantor