WSS_PROFILE_ADMIN 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 WSS_PROFILE_ADMIN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
WSSPROFILE - Edit Web Services Security Profile
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.
Title: Edit Web Services Security Profile
Text Symbol: DEL = Delete the existing profile?
Text Symbol: SAV = Do you want to save the profile?
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_question = text-sav display_cancel_button = ' ' IMPORTING answer = lc_status EXCEPTIONS text_not_found = 1 OTHERS = 2.
SECSTORE_READ_ITEM CALL FUNCTION 'SECSTORE_READ_ITEM' EXPORTING ident = rsecid * OPTIONAL_KEY = IMPORTING data = lf_rsecdata * DATA_LEN = EXCEPTIONS internal_error = 1 invalid_description = 2 invalid_auth = 3 OTHERS = 4.
SECSTORE_DELETE_ITEM CALL FUNCTION 'SECSTORE_DELETE_ITEM' EXPORTING ident = rsecid * OPTIONAL_KEY = EXCEPTIONS internal_error = 1 invalid_description = 0 invalid_auth = 3 OTHERS = 4.
SECSTORE_INSERT_ITEM CALL FUNCTION 'SECSTORE_INSERT_ITEM' EXPORTING ident = rsecid data = lf_rsecdata TABLES repaclist = lt_aclist EXCEPTIONS internal_error = 1 invalid_description = 2 invalid_auth = 3 OTHERS = 4.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING * TITLEBAR = ' ' text_question = text-del display_cancel_button = ' ' IMPORTING answer = lc_status EXCEPTIONS text_not_found = 1 OTHERS = 2.
SECSTORE_DELETE_ITEM CALL FUNCTION 'SECSTORE_DELETE_ITEM' EXPORTING ident = rsecid * OPTIONAL_KEY = EXCEPTIONS internal_error = 1 invalid_description = 0 invalid_auth = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.