<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Icon on Selection -screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393347#M190904</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

type-pools: icon.

selection-screen begin of block b1 with frame title text-001.
selection-screen begin of line.
selection-screen comment 1(17) fld_lab.
selection-screen comment 18(5) icon1.
parameters: p_check.
selection-screen end of line.
selection-screen end of block b1.

at selection-screen output.

  write icon_configuration as icon to icon1.
  fld_lab = 'This is the label'.

start-of-selection.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Jun 2006 04:28:58 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-06-17T04:28:58Z</dc:date>
    <item>
      <title>Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393342#M190899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any option to add icons to parameters/selection option fields. This can be done if screen is designed via Screen painter but looking for option if screen is defined using selection-screen option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jun 2006 03:43:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393342#M190899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-17T03:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393343#M190900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is some sample code.  This shows how to put some text with your icon as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

type-pools: icon.

selection-screen begin of block b1 with frame title text-001.
parameters: p_check.
selection-screen comment 40(20) icon1.
selection-screen end of block b1.

at selection-screen output.

* Write pushbutton text
  write icon_configuration as icon to icon1.
  concatenate icon1 'Your Icon' into icon1
              separated by space.

start-of-selection.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jun 2006 04:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393343#M190900</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-17T04:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393344#M190901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;Thanks a lot for speedy response. it solved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jun 2006 04:16:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393344#M190901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-17T04:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393345#M190902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just have an querry, how this icon can be placed on left hand side. close to field lname.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jun 2006 04:21:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393345#M190902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-17T04:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393346#M190903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That can be done like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

type-pools: icon.

selection-screen begin of block b1 with frame title text-001.
selection-screen begin of line.
selection-screen comment 1(5) icon1.
selection-screen comment 7(20) fld_lab.
parameters: p_check.
selection-screen end of line.
selection-screen end of block b1.

at selection-screen output.

  write icon_configuration as icon to icon1.
  fld_lab = 'This is the label'.

start-of-selection.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jun 2006 04:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393346#M190903</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-17T04:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393347#M190904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

type-pools: icon.

selection-screen begin of block b1 with frame title text-001.
selection-screen begin of line.
selection-screen comment 1(17) fld_lab.
selection-screen comment 18(5) icon1.
parameters: p_check.
selection-screen end of line.
selection-screen end of block b1.

at selection-screen output.

  write icon_configuration as icon to icon1.
  fld_lab = 'This is the label'.

start-of-selection.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jun 2006 04:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393347#M190904</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-17T04:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393348#M190905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;full marks to you rich.&lt;/P&gt;&lt;P&gt;thansk again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jun 2006 05:26:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393348#M190905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-17T05:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393349#M190906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report zrich_0001 .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;type-pools: icon.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(5) icon1.&lt;/P&gt;&lt;P&gt;selection-screen comment 7(20) fld_lab.&lt;/P&gt;&lt;P&gt;parameters: p_check.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  write icon_configuration as icon to icon1.&lt;/P&gt;&lt;P&gt;  fld_lab = 'This is the label'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2009 06:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393349#M190906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-04T06:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393350#M190907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; report zrich_0001 .&lt;/P&gt;&lt;P&gt;&amp;gt;  &lt;/P&gt;&lt;P&gt;&amp;gt; type-pools: icon.&lt;/P&gt;&lt;P&gt;&amp;gt;  &lt;/P&gt;&lt;P&gt;&amp;gt; selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;&amp;gt; selection-screen begin of line.&lt;/P&gt;&lt;P&gt;&amp;gt; selection-screen comment 1(5) icon1.&lt;/P&gt;&lt;P&gt;&amp;gt; selection-screen comment 7(20) fld_lab.&lt;/P&gt;&lt;P&gt;&amp;gt; parameters: p_check.&lt;/P&gt;&lt;P&gt;&amp;gt; selection-screen end of line.&lt;/P&gt;&lt;P&gt;&amp;gt; selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&amp;gt;  &lt;/P&gt;&lt;P&gt;&amp;gt; at selection-screen output.&lt;/P&gt;&lt;P&gt;&amp;gt;  &lt;/P&gt;&lt;P&gt;&amp;gt;   write icon_configuration as icon to icon1.&lt;/P&gt;&lt;P&gt;&amp;gt;   fld_lab = 'This is the label'.&lt;/P&gt;&lt;P&gt;&amp;gt;  &lt;/P&gt;&lt;P&gt;&amp;gt; start-of-selection.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ROTFL!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 05:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393350#M190907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T05:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393351#M190908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah stuff it.  I'll go straight for guestification on this one.  From "Hi" to "Bye"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 07:01:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393351#M190908</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-07-10T07:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Icon on Selection -screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393352#M190909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we change the icon..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2009 07:11:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-on-selection-screen/m-p/1393352#M190909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-10T07:11:06Z</dc:date>
    </item>
  </channel>
</rss>

