SECPOL_VC_CALLBACKS 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 SECPOL_VC_CALLBACKS 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.
Title: Callback Routines for View Maintenance for Security Policies (SECPOL)
Text Symbol: 001 = Security Policy
Text Symbol: 002 = Result of the Consistency Checks When Saving
Text Symbol: 003 = Default Value
Text Symbol: 004 = Maintained value is the same as the default value (superfluous)
Text Symbol: 005 = Maintained value replaces default value (&1)
Text Symbol: 006 = Source of Effective Attribute Value
Text Symbol: 007 = Description of Attribute
INCLUDE LSVCMCOD.
No SAP DATABASE tables are accessed within this REPORT code!
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = ls_log IMPORTING e_log_handle = lf_loghandle EXCEPTIONS OTHERS = 1.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = lf_loghandle i_s_msg = ls_bal_msg.
BAL_DSP_PROFILE_POPUP_GET CALL FUNCTION 'BAL_DSP_PROFILE_POPUP_GET' EXPORTING start_col = 5 start_row = 5 end_col = 132 end_row = 20 IMPORTING e_s_display_profile = ls_profile.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_profile i_t_log_handle = lt_loghandle EXCEPTIONS OTHERS = 1.
SECURITY_POLICY_WRITE_DOCUMENT CALL FUNCTION 'SECURITY_POLICY_WRITE_DOCUMENT' EXPORTING objectid = lf_objectid tcode = lf_tcode utime = lf_utime udate = lf_udate username = lf_username n_sec_policy_cust = ls_cust_new o_sec_policy_cust = ls_cust_old upd_sec_policy_cust = lf_upd_cust upd_sec_policy_rt = 'U' " can always be "U", the function checks itself the delta of the tables TABLES xsec_policy_rt = lt_att_new ysec_policy_rt = lt_att_old.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING dokclass = 'DE' dokname = ls_info-ddic_dataelement TABLES links = lt_links_dummy EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_element info = lf_infotext IMPORTING result = ls_list-icon EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_equal_red info = lf_infotext IMPORTING result = ls_list_ref->icon EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_not_equal info = lf_infotext IMPORTING result = ls_list_ref->icon EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING is_layout = ls_layout it_fieldcat = lt_fieldcat i_screen_start_column = 5 i_screen_start_line = 5 i_screen_end_column = 100 i_screen_end_line = 25 TABLES t_outtab = lt_list EXCEPTIONS OTHERS = 0.
AUTH_CHECK_TCODE CALL FUNCTION 'AUTH_CHECK_TCODE' EXPORTING tcode = 'SECPOL_CHANGES' EXCEPTIONS OTHERS = 1.
AUTH_CHECK_TCODE CALL FUNCTION 'AUTH_CHECK_TCODE' EXPORTING tcode = 'SECPOL_CHANGES' EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
SECPOL_VC_CALLBACKS - Callback Routines for View Maintenance for Security Policies (SECPOL) SECPOL_VC_CALLBACKS - Callback Routines for View Maintenance for Security Policies (SECPOL) SECPOL_START_MAINTENANCE - Program SECPOL_START_MAINTENANCE SECPOL_START_MAINTENANCE - Program SECPOL_START_MAINTENANCE SECPOL_DISPLAY_CHANGEDOCUMENTS - Display Change Documents for Security Policies SECPOL_DISPLAY_CHANGEDOCUMENTS - Display Change Documents for Security Policies