RSSWOUSR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Display of and statistics on Internet Users Authorization to display Internet users, authorization object
If you would like to execute this report or see the full code listing simply enter RSSWOUSR 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: WITHDOCU = With documentation on type
Selection Text: OBJTYPE = Type
Selection Text: OBJID = Internet user
Title: List of Internet users
Text Symbol: T01 = Output
Text Symbol: S04 = With documentation of user types
Text Symbol: S02 = Number of Internet users
Text Symbol: S01 = List of Internet users
Text Symbol: 004 = does not exist
Text Symbol: 003 = Display Internet user
Text Symbol: 002 = Number of users
Text Symbol: 001 = Type
001 Internet User SV S Created Valid Error Last Logon Password Change Notes
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SWI_OBJECT_DEFAULT_METHOD CALL FUNCTION 'SWI_OBJECT_DEFAULT_METHOD' EXPORTING OBJTYPE = LOBJTYPE OBJKEY = LOBJKEY.
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING TCODE = 'SU05_OLD' EXCEPTIONS OK = 0 NOT_OK = 1 OTHERS = 2.
SWO_TEXT_OBJTYPE CALL FUNCTION 'SWO_TEXT_OBJTYPE' EXPORTING * LANGUAGE = SY-LANGU OBJTYPE = IBAPIUSW01-OBJTYPE IMPORTING KEYWORD = KEYWORD SHORTTEXT = SHORTTEXT .
SWO_TEXT_OBJTYPE CALL FUNCTION 'SWO_TEXT_OBJTYPE' EXPORTING * LANGUAGE = SY-LANGU OBJTYPE = IBAPIUSW01CNT-OBJTYPE IMPORTING KEYWORD = KEYWORD SHORTTEXT = SHORTTEXT .
SWO_QUERY_OBJTYPE_DOCU CALL FUNCTION 'SWO_QUERY_OBJTYPE_DOCU' EXPORTING OBJTYPE = IBAPIUSW01CNT-OBJTYPE * VERB = ' ' * PARAMETER = ' ' * LANGUAGE = SY-LANGU * API_ONLY = 'X' WITH_COMPLETE_DOCUMENTATION = ' ' IMPORTING RETURN = RETURN TABLES DOCUMENTATION = DOCUMENTATION EXCEPTIONS PARAMETER_ERROR = 1 OTHERS = 2 .
SWO_CREATE CALL FUNCTION 'SWO_CREATE' EXPORTING OBJTYPE = OBJTYPE OBJKEY = OBJKEY IMPORTING OBJECT = OBJECT RETURN = RETURN.
SWO_INVOKE CALL FUNCTION 'SWO_INVOKE' EXPORTING ACCESS = 'C' OBJECT = OBJECT VERB = 'EXISTENCECHECK' PERSISTENT = 'X' IMPORTING RETURN = RETURN TABLES CONTAINER = CONTAINER.
SWO_INVOKE CALL FUNCTION 'SWO_INVOKE' EXPORTING ACCESS = 'C' OBJECT = OBJECT VERB = 'GETDETAIL' PERSISTENT = 'X' IMPORTING RETURN = RETURN TABLES CONTAINER = CONTAINER.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.