List of icons available for SAP CRM Web UI

Problem: you want to use an icon in the SAP CRM Web UI but you don’t know what icons are available and how do they look.

Solution: to list all icons you can go to SE24 and execute method GET_WEB_ICONS of class CL_WD_WEB_ICON. This will return a list of all icons available for use in Web UI. However, the list does not present the icons.

To take a look how the icons look open your browser and paste the url: http://<your-sap-crm-server>/sap/bc/bsp/sap/it00/mime_sap_icons.htm Then, to get icon’s URL for the Web UI, use method SAP_ICON of class CL_BSP_MIMES, like so:

cl_bsp_mimes=>sap_icon( id = 's_immoob.gif' ).
cl_bsp_mimes=>sap_icon( id = 'ICON_REAL_ESTATE_OBJECT' ).
cl_bsp_mimes=>sap_icon( id = 's_immoob.gif' ).
cl_bsp_mimes=>sap_icon( id = 'ICON_REAL_ESTATE_OBJECT' ).

Komentowanie jest zakończone.