ED_MONASN_CREATE_ICONS is a standard ABAP INCLUDE 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 ED_MONASN_CREATE_ICONS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_DELETE' info = text-114 text = text-114 IMPORTING RESULT = g_f_icon_result_d EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_FAILURE' IMPORTING RESULT = g_f_icon_result_l EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING * name = 'ICON_RED_LIGHT' name = 'ICON_LED_RED' info = text-110 text = text-110 IMPORTING RESULT = g_f_icon_result_r EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING * name = 'ICON_YELLOW_LIGHT' name = 'ICON_LED_YELLOW' info = text-111 text = text-111 IMPORTING RESULT = g_f_icon_result_y EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING * name = 'ICON_GREEN_LIGHT' name = 'ICON_LED_GREEN' info = text-112 text = text-112 IMPORTING RESULT = g_f_icon_result_g EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING * name = 'ICON_LIGHT_OUT' name = 'ICON_LED_INACTIVE' info = text-113 text = text-113 IMPORTING RESULT = g_f_icon_result_o EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_CHANGE' IMPORTING RESULT = g_f_icon_result_c EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_DISPLAY_TEXT' IMPORTING RESULT = g_f_icon_result_t EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_CHECKED' IMPORTING RESULT = g_f_icon_result_e EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.