cancel
Showing results for 
Search instead for 
Did you mean: 

show icons in mime repository

Former Member
0 Kudos

Hallo,

i am searching a specific icon (a closing door) in the mime repository.

Is there a possibility to get an overview about all icons on one page?

I can not doubleclick all mime objects one after another. There are a few hundred.

Thanks for your answer.

Martin

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Why code ourselves, when it is already availiable....

Look into the BSP Application <b>IT00</b>, Page --> <b>mime_sap_icons.htm</b>

This will solve your problem...just execute the code and see the magic...!

Hope this helps.

<b><i>Do reward each useful answer..!</i></b>

Thanks,

Tatvagna.

GrahamRobbo
Active Contributor
0 Kudos

Hi Martin,

create a BSP page with this in the layout.

<%@page language="abap" %>
<%@extension name="htmlb" prefix="htmlb" %>
<htmlb:content design="design2003" >
  <htmlb:page title="Standard SAP Icons" >
    <%
  data: icon type icon.
  select * from icon into icon.
    %>
    <htmlb:image src="<%= icon-name %>" alt="<%= icon-name %>" tooltip="<%= icon-name %>" />
    <%
  endselect.
    %>
  </htmlb:page>
</htmlb:content>

Cheers

Graham Robbo