SIAC_SHOW_PUBLISHED 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 SIAC_SHOW_PUBLISHED 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: Report SIAC_SHOW_PUBLISHED
INCLUDE SIAC_SELSCREEN_1_DATA.
INCLUDE SIAC_SELSCREEN_1_SCREEN.
INCLUDE SIAC_SELSCREEN_1_INIT.
No SAP DATABASE tables are accessed within this REPORT code!
CONVERSION_EXIT_ALPHA_OUTPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = siac_sel_1_data-iacobj-dynpro IMPORTING output = siac_sel_1_data-iacobj-dynpro.
W3_SERVICE_SHOW_PUBLISHED CALL FUNCTION 'W3_SERVICE_SHOW_PUBLISHED' EXPORTING pi_service = l_service EXCEPTIONS not_existing = 1.
W3_RESOURCE_SHOW_PUBLISHED CALL FUNCTION 'W3_RESOURCE_SHOW_PUBLISHED' EXPORTING pi_resource = l_resource EXCEPTIONS not_existing = 1.
W3_TEMPLATE_SHOW_PUBLISHED CALL FUNCTION 'W3_TEMPLATE_SHOW_PUBLISHED' EXPORTING pi_template = l_template EXCEPTIONS not_existing = 1.
W3_TEMP_LANG_SHOW_PUBLISHED CALL FUNCTION 'W3_TEMP_LANG_SHOW_PUBLISHED' EXPORTING pi_template = l_template_lang EXCEPTIONS not_existing = 1.
W3_MIME_SHOW_PUBLISHED CALL FUNCTION 'W3_MIME_SHOW_PUBLISHED' EXPORTING pi_mime = l_mime EXCEPTIONS not_existing = 1.
W3_MIME_LANG_SHOW_PUBLISHED CALL FUNCTION 'W3_MIME_LANG_SHOW_PUBLISHED' EXPORTING pi_mime = l_mime_lang EXCEPTIONS not_existing = 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.