<?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 Icon changed dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605330#M597008</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. Is there some possilbility to control dynamically which icon appears in the SCREEN? Or maybe there is some way to set icon which was added to the SCREEN invisible depending on some conditions? Greetings. P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2007 07:33:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-08T07:33:49Z</dc:date>
    <item>
      <title>Icon changed dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605330#M597008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. Is there some possilbility to control dynamically which icon appears in the SCREEN? Or maybe there is some way to set icon which was added to the SCREEN invisible depending on some conditions? Greetings. P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 07:33:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605330#M597008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T07:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Icon changed dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605331#M597009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  First, create the button on the screen. Give a name like 'THISBUTTON' in the name field of the button(not the text field), click the OUTPUT Only checkbox. Now, in your ABAP program, define a field for this button that you created and set the value of the icon in the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;In this sample program, there is a button on screen 100&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;which has the name of THISBUTTON, and is set as output&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;only.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;report zkiran_0001.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;type-pools: icon.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: thisbutton(30) Type c.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;call screen 100.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  status_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module status_0100 output.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;write icon_green_light as icon to thisbutton.&lt;/P&gt;&lt;P&gt;concatenate thisbutton 'This is the button' into thisbutton&lt;/P&gt;&lt;P&gt;            separated by space.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;endmodule.                 " status_0100  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  user_command_0100  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module user_command_0100 input.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  leave program.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;endmodule.                 " user_command_0100  INPUT&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 07:42:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605331#M597009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T07:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Icon changed dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605332#M597010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The usual recommendation is to call the ICON_CREATE function module module to define your icons - this gives you extra functionality such as being able to specify the quickinfo for it at runtime... have a read through:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/59/348efa61c611d295750000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/59/348efa61c611d295750000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as this gives a lot more info, and an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 23:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605332#M597010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T23:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Icon changed dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605333#M597011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the example provided by SAP in abapdocu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run abapdocu -&amp;gt;ABAP user dialogs -&amp;gt;screens -&amp;gt; Complex screen elements -&amp;gt;&lt;/P&gt;&lt;P&gt;status icons on screens (REPORT demo_dynpro_status_icons.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This standard example will give youa detail idea on the use of icons and thier use on screens''&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it served your purpose&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 10:32:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/icon-changed-dynamically/m-p/2605333#M597011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T10:32:29Z</dc:date>
    </item>
  </channel>
</rss>

