RFFMCHAD 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 program to delete the data from the reassignment tool
If you would like to execute this report or see the full code listing simply enter RFFMCHAD into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FMCD - Reassignment: Delete Work List
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_EBUDPD = D .
Selection Text: P_FIKRS = D .
Selection Text: P_SIMUL = D .
Selection Text: S_ACTYP = D .
Selection Text: S_EFAREA = D .
Selection Text: S_EFIPEX = D .
Selection Text: S_EFISTL = D .
Selection Text: S_EFONDS = D .
Selection Text: S_EMEASR = D .
Selection Text: S_REFBN = D .
Selection Text: S_REFBT = D .
Selection Text: S_RUNNR = D .
Selection Text: S_SBUDPD = D .
Selection Text: S_SFAREA = D .
Selection Text: S_SFIPEX = D .
Selection Text: S_SFISTL = D .
Selection Text: S_SFONDS = D .
Selection Text: S_SMEASR = D .
Title: Delete Work List - Reassignment Tool
Text Symbol: 001 = Control parameters
Text Symbol: 003 = Selection
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FM_AUTH_CHECK_FM_AREA CALL FUNCTION 'FM_AUTH_CHECK_FM_AREA' EXPORTING i_fikrs = p_fikrs i_actvt = fmau_ac_acch i_msgty = 'E'.
FM_CHANGE_AA_TABWO_DISPLAY CALL FUNCTION 'FM_CHANGE_AA_TABWO_DISPLAY' EXPORTING i_error_not_red = con_on i_alv_callback_prog = 'RFFMCHAD' TABLES t_fmcha1 = g_t_fmcha1 t_fmcha1_out = g_t_fmcha1_out. "Note 1389332
FM_CHANGE_AA_TABWO_READ CALL FUNCTION 'FM_CHANGE_AA_TABWO_READ' EXPORTING i_fikrs = p_fikrs TABLES t_runnr = s_runnr t_refbt = s_refbt t_refbn = s_refbn t_rfpos = s_rfpos "Note 1709991 t_efipex = s_efipex t_efistl = s_efistl t_efonds = s_efonds t_ebudget_pd = s_ebudpd t_efarea = s_efarea t_emeasure = s_emeasr t_sfipex = s_sfipex t_sfistl = s_sfistl t_sfonds = s_sfonds t_sbudget_pd = s_sbudpd t_sfarea = s_sfarea t_smeasure = s_smeasr t_actyp = s_actyp t_fmcha1 = g_t_fmcha1.
FM_CHANGE_AA_TABCO_WRITE CALL FUNCTION 'FM_CHANGE_AA_TABCO_WRITE' EXPORTING i_flg_date_selected = con_on TABLES t_fmcha1 = l_t_fmcha1.
FM_CHANGE_AA_TABWO_DELETE CALL FUNCTION 'FM_CHANGE_AA_TABWO_DELETE' TABLES t_fmcha1 = l_t_fmcha1.
FM_CHANGE_AA_TABWO_HEADER CALL FUNCTION 'FM_CHANGE_AA_TABWO_HEADER' EXPORTING i_error_out = con_off i_test = p_simul IMPORTING e_f_lh_attributes = g_f_lh_attributes e_f_action_info = g_f_action_info TABLES e_t_top_data = g_t_top_data c_t_fmcha1 = g_t_fmcha1.
FM_DOCUMENT_DISPLAY CALL FUNCTION 'FM_DOCUMENT_DISPLAY' EXPORTING i_belnr = l_belnr i_bukrs = l_bukrs i_gjahr = l_gjahr i_wrttp = l_wrttp.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.