RSSFV_ADMIN 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: Display the versions of an SSF key Generate a new version of an SSF key Delete old versions of an SSF key You can only delete old versions if they are no longer used and that information is stored in table
If you would like to execute this report or see the full code listing simply enter RSSFV_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
SSFVA - Administration of Key Versions
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: APPLIC = D .
Title: Administration of Key Versions
Text Symbol: 001 = &1 (&2)
Text Symbol: 002 = Documentation for SSF Application
Text Symbol: 005 = Current Key
Text Symbol: 006 = Conversion Required
Text Symbol: 007 = Released for Deletion as of &1
Text Symbol: 008 = Release for Deletion
Text Symbol: 009 = Conversion Might Be Required
Text Symbol: 010 = Do you really want to delete the key?
Text Symbol: 011 = Warning
Text Symbol: 012 = Not Released for Deletion
Text Symbol: 013 = Deleted
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SSFV_COUNT CALL FUNCTION 'SSFV_COUNT' EXPORTING i_applic = applic i_keyversion =
-keyversion IMPORTING e_count = l_count EXCEPTIONS failed = 1 OTHERS = 2.
SSFV_SET_STATISTICS CALL FUNCTION 'SSFV_SET_STATISTICS' EXPORTING i_applic = applic it_ssfvkeyadmin = gt_keyversions.
SSFV_CREATE_KEYVERSION CALL FUNCTION 'SSFV_CREATE_KEYVERSION' EXPORTING if_applic = applic EXCEPTIONS unknown_application = 1 no_authorization = 2 ssf_krn_error = 3 database_error = 4 OTHERS = 5.
PCA_SEC_DOCU_SHOW CALL FUNCTION 'PCA_SEC_DOCU_SHOW' EXPORTING i_popup_title = 'Dokumentation zur SSF-Anwendung'(002) i_text_object = l_text_object EXCEPTIONS error_message = 1 OTHERS = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Warnung'(011) popup_type = 'ICON_MESSAGE_WARNING' text_question = 'Möchten Sie den Schlüssel wirklich löschen?'(010) icon_button_1 = 'ICON_DELETE' icon_button_2 = 'ICON_CANCEL' default_button = '2' display_cancel_button = space IMPORTING answer = l_answer EXCEPTIONS OTHERS = 2.
SSFV_DELETE_KEYVERSION CALL FUNCTION 'SSFV_DELETE_KEYVERSION' EXPORTING if_applic = applic if_keyversion = p_line-keyversion EXCEPTIONS unknown_application = 1 no_authorization = 2 version_not_found = 3 version_not_deletable = 4 database_error = 5 OTHERS = 6.
CCSEC_CHECK_VERSIONING CALL FUNCTION 'CCSEC_CHECK_VERSIONING' IMPORTING e_xkeyv = g_xkeyv.
SSFV_GET_ALL_KEYVERSIONS CALL FUNCTION 'SSFV_GET_ALL_KEYVERSIONS' EXPORTING if_applic = applic IMPORTING et_keyversions = lt_keyversions EXCEPTIONS OTHERS = 2.
SSFV_GET_STATISTICS CALL FUNCTION 'SSFV_GET_STATISTICS' IMPORTING e_applic = l_applic et_ssfvkeyadmin = lt_ssfvkeyadmin.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = g_repid i_internal_tabname = con_int_tabname i_structure_name = con_struc i_client_never_display = 'X' * I_INCLNAME = * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = CHANGING ct_fieldcat = rt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
SSFV_GET_DESCRIPTION CALL FUNCTION 'SSFV_GET_DESCRIPTION' EXPORTING if_applic = applic IMPORTING ef_descript = psetext EXCEPTIONS OTHERS = 0. " ignore errors
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_pf_status_set = con_status_set i_callback_user_command = con_user_command * i_save = 'A' " Save variants possible * is_variant = variant is_layout = gs_layout it_fieldcat = rt_fieldcat * it_excluding = gt_extab i_grid_title = l_grid_title TABLES t_outtab = gt_keyversions EXCEPTIONS program_error = 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.