RFKKBIXBIT4DELETE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The system saves billed
If you would like to execute this report or see the full code listing simply enter RFKKBIXBIT4DELETE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FKKBIXBIT4_DEL - Delete Billed Billable Items
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: P_BIT4P = Delete Real Data
Selection Text: P_BIT4S = Delete Simulated Data
Selection Text: P_BITCAT = Billable Item Class
Selection Text: P_CUST = To-Date per Customizing
Selection Text: P_FIX = Alternative To-Date
Selection Text: P_PERINV = Date Invoiced To
Selection Text: P_SUFFP = Table Set
Selection Text: P_SUFFS = Table Set
Selection Text: P_DELPRD = D .
Selection Text: P_DELTST = D .
Selection Text: P_PERBI = D .
Title: Delete Billed Items
Text Symbol: 001 = Deletion Scope
Text Symbol: 002 = Billable Item Class
Text Symbol: 003 = Determination of Residence Time
Text Symbol: 004 = Alternative Residence Time
Text Symbol: 005 = Delete Billed Items
Text Symbol: 006 = Deleted Entries
Text Symbol: 007 = Deleted Data Volume in Bytes
Text Symbol: 008 = Not Deleted Table Sets
INCLUDE RFKKBIXBIT4DELETE_TOP.
No SAP DATABASE tables are accessed within this REPORT code!
FKK_BIX_DEL_AUTH_CHECK CALL FUNCTION 'FKK_BIX_DEL_AUTH_CHECK'.
FKK_BIX_BIT4_TAB_DELETE CALL FUNCTION 'FKK_BIX_BIT4_TAB_DELETE' EXPORTING i_bitcat = p_bitcat it_bit4_suffix_ranges = lt_bit4_tab_suffix i_bit4_simulated = p_bit4s i_bill_check_date = p_perbi i_inv_check_date = p_perinv i_testrun = p_deltst IMPORTING et_bit4_del = lt_bit4_del.
FKK_BIX_SHOW_RESULTS CALL FUNCTION 'FKK_BIX_SHOW_RESULTS' EXPORTING i_gui_title = text-005 it_msg_disp = lt_msg_disp i_process = 'D'. "delete
FKK_BIX_BIT4_TAB_DELETE CALL FUNCTION 'FKK_BIX_BIT4_TAB_DELETE' EXPORTING i_bitcat = p_bitcat i_bit4_simulated = p_bit4s i_checkrun = 'X'.
FKK_BIX_BIT4_SHOW_DEL_HIST CALL FUNCTION 'FKK_BIX_BIT4_SHOW_DEL_HIST' EXPORTING i_bitcat = p_bitcat it_bit4_suffix_ranges = lt_bit4_tab_suffix.
DSYS_SHOW_FOR_F1HELP CALL FUNCTION 'DSYS_SHOW_FOR_F1HELP' EXPORTING dokclass = 'RE' dokname = sy-repid short_text = 'X' EXCEPTIONS OTHERS = 1.
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = 'DELE' TABLES p_exclude = gt_excl_ok_codes EXCEPTIONS error_message = 0 OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.