RFTMUS00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report deletes the user settings for a particular user or all users...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 RFTMUS00 into the relevant SAP transactions such as SE38 or SE80
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_ALL = For all users
Selection Text: P_UNAME = D User
Title: Deletion of user settings
Text Symbol: 001 = User settings
Text Symbol: 002 = Should the settings be deleted?
Text Symbol: 003 = Yes
Text Symbol: 004 = No
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-001 text_question = text-002 text_button_1 = text-003 icon_button_1 = 'ICON_OKAY' text_button_2 = text-004 icon_button_2 = 'ICON_CANCEL' default_button = '2' display_cancel_button = space importing answer = g_answer.
TM_USER_SETTINGS_DELETE call function 'TM_USER_SETTINGS_DELETE' exporting i_uname = p_uname.
TM_USER_SETTINGS_DELETE_ALL call function 'TM_USER_SETTINGS_DELETE_ALL'.
TM_USER_SETTINGS_DELETE call function 'TM_USER_SETTINGS_DELETE' exporting i_uname = p_uname i_sanlf = g_w_tzaf-sanlf.
TM_USER_SETTINGS_DELETE_ALL call function 'TM_USER_SETTINGS_DELETE_ALL' exporting i_sanlf = g_w_tzaf-sanlf.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.