<?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: Trafic Lights in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461690#M217828</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Can you put some idea about this issue... Perhaps I can hep you about this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Brijesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jul 2006 09:56:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-25T09:56:58Z</dc:date>
    <item>
      <title>Trafic Lights</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461688#M217826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one ALV with one field with trafic lights. i want to know if there is anyway of the user set the parameters for the lights. like when we do a colective entry on the transaction MD04 the screen that shows up have some traffic lights and in the toolbar has a button to control the traffic lights parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 09:53:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461688#M217826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T09:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Trafic Lights</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461689#M217827</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;You can also put some button on the toolbar and in your USER_COMMAND you can control the status of the lights.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this form you will get the line number and based on the button clicked (red button, green ,yellow) you can set the status of the traffic light.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then display your alv again by RS_SELFIELD-REFRESH = 'X'.&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;naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 09:55:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461689#M217827</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-07-25T09:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Trafic Lights</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461690#M217828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Can you put some idea about this issue... Perhaps I can hep you about this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Brijesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 09:56:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461690#M217828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T09:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Trafic Lights</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461691#M217829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF T_ICON OCCURS 0,&lt;/P&gt;&lt;P&gt;       ID LIKE ICON-ID,&lt;/P&gt;&lt;P&gt;       TEXT LIKE T100-TEXT,&lt;/P&gt;&lt;P&gt;      END OF T_ICON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT T_MESSAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'FORMAT_MESSAGE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        ID   = T_MESSAGE-ID&lt;/P&gt;&lt;P&gt;        LANG = 'E'&lt;/P&gt;&lt;P&gt;        NO   = T_MESSAGE-NUMBER&lt;/P&gt;&lt;P&gt;        V1   = T_MESSAGE-MESSAGE_V1&lt;/P&gt;&lt;P&gt;        V2   = T_MESSAGE-MESSAGE_V2&lt;/P&gt;&lt;P&gt;        V3   = T_MESSAGE-MESSAGE_V3&lt;/P&gt;&lt;P&gt;        V4   = T_MESSAGE-MESSAGE_V4&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        MSG  = T_ICON-TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF T_MESSAGE-TYPE = 'E'.&lt;/P&gt;&lt;P&gt;      T_ICON-ID = '@0A@'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF T_MESSAGE-TYPE = 'S'.&lt;/P&gt;&lt;P&gt;      T_ICON-ID = '@08@'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF T_MESSAGE-TYPE = 'W'.&lt;/P&gt;&lt;P&gt;      T_ICON-ID = '@09@'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF T_MESSAGE-TYPE = 'I'.&lt;/P&gt;&lt;P&gt;      T_ICON-ID = '@0S@'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    APPEND T_ICON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;CALL METHOD ALV-&amp;gt;SET_TABLE_FOR_FIRST_DISPLAY&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      I_BYPASSING_BUFFER   = 'X'&lt;/P&gt;&lt;P&gt;      IS_LAYOUT            = GS_LAYOUT&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      IT_OUTTAB            = T_ICON[]&lt;/P&gt;&lt;P&gt;      IT_FIELDCATALOG      = FIELDCATTAB[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 10:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trafic-lights/m-p/1461691#M217829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T10:05:33Z</dc:date>
    </item>
  </channel>
</rss>

