RSPHQUSR 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 RSPHQUSR 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: NOSEND = No message
Selection Text: NOCA = Do not display call
Selection Text: MAILEXP = Expiration time for message
Selection Text: DISP = Display call
Selection Text: DEFLECT = Number group for transfer
Selection Text: USER = User
Selection Text: TASKID = Task ID
Selection Text: TASK = Start task
Selection Text: TANA = Only start task with caller
Selection Text: SEND = Message
Selection Text: CCUSER = Call center user
Selection Text: ALLMAIL = All users
Selection Text: ALLIN = All users
Title: SAPphone: Select list of user settings
Text Symbol: C01 = The data was changed
Text Symbol: BK2 = Notification of call in absence
Text Symbol: BK1 = Display of inbound calls
Text Symbol: A10 = Information
Text Symbol: 001 = Description not maintained in logon language
Text Symbol: C03 = Quit user maintenance
Text Symbol: C02 = Save changes?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SP_F4_HELP_DEFLECT_GROUP CALL FUNCTION 'SP_F4_HELP_DEFLECT_GROUP' IMPORTING DFGRP_ID = DEFLECT-LOW.
SP_F4_HELP_DEFLECT_GROUP CALL FUNCTION 'SP_F4_HELP_DEFLECT_GROUP' IMPORTING DFGRP_ID = DEFLECT-HIGH.
TEL_USER_APPLICATION_READ CALL FUNCTION 'TEL_USER_APPLICATION_READ' EXPORTING USERNAME = SPACE TABLES APPLIC_TAB = APPLIC_TAB.
SP_F4_HELP_DEFLECT_GROUP CALL FUNCTION 'SP_F4_HELP_DEFLECT_GROUP' IMPORTING DFGRP_ID = GROUP DFGRP_DESCRIPT = TEXT.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TEXTLINE1 = TEXT-C01 TEXTLINE2 = TEXT-C02 TITEL = TEXT-C03 IMPORTING ANSWER = ANSWER.
TEL_USER_DATA_READ CALL FUNCTION 'TEL_USER_DATA_READ' EXPORTING username = L_USER_DATA-TELUSER IMPORTING user_data = L_USER_DATA2 TABLES atic_tab = L_ATIC_LIST2 EXCEPTIONS no_data_found = 1 no_user_specified = 2 OTHERS = 3.
TEL_USER_DATA_WRITE CALL FUNCTION 'TEL_USER_DATA_WRITE' EXPORTING USER_DATA = L_USER_DATA TABLES ATIC_TAB = L_ATIC_LIST.
TEL_USER_DISPLAY CALL FUNCTION 'TEL_USER_DISPLAY' EXPORTING USERNAME = USER ACTIVITY = SPH_MODE_CHANGE EXCEPTIONS NO_USER_SPECIFIED = 1 OTHERS = 2.
TEL_USER_DATA_READ CALL FUNCTION 'TEL_USER_DATA_READ' EXPORTING USERNAME = sel_pattern IMPORTING USER_DATA = pattern TABLES ATIC_TAB = area_tab EXCEPTIONS NO_DATA_FOUND = 1 NO_USER_SPECIFIED = 2 OTHERS = 3.
POPUP_DISPLAY_TEXT CALL FUNCTION 'POPUP_DISPLAY_TEXT' EXPORTING POPUP_TITLE = 'Information'(A10) TEXT_OBJECT = 'SAPPHONE_HELP_13'.
SP_F4_HELP_DEFLECT_GROUP CALL FUNCTION 'SP_F4_HELP_DEFLECT_GROUP' IMPORTING DFGRP_ID = DEFLECT_ID DFGRP_DESCRIPT = DEFLECT_TEXT.
TEL_USER_DISPLAY CALL FUNCTION 'TEL_USER_DISPLAY' EXPORTING USERNAME = SEL_PATTERN ACTIVITY = SPH_MODE_DISPLAY EXCEPTIONS NO_USER_SPECIFIED = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.