<?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: Regarding icon in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944769#M389529</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;still need some reponses&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Feb 2007 05:10:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-28T05:10:16Z</dc:date>
    <item>
      <title>Regarding icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944765#M389525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have developed a report in which i have to display an icon,  which appear has combination of 3 lights (Green, yellow and red). how to display that icon. please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanjs in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 04:48:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944765#M389525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T04:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944766#M389526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;See the sample code for the Icons:&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;      Form  select_icons&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;      select icons for display and move data to display table&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;type-pools: icon.&lt;/P&gt;&lt;P&gt;form select_icons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: w_disp_tab like zpickdisp,&lt;/P&gt;&lt;P&gt;        w_disp_head like zpickhead,&lt;/P&gt;&lt;P&gt;        w_color like zpickdisp-color,&lt;/P&gt;&lt;P&gt;        ov_icon like zpickdisp-ov_icon,&lt;/P&gt;&lt;P&gt;        gi_icon like zpickdisp-gi_icon,&lt;/P&gt;&lt;P&gt;        to_icon like zpickdisp-to_icon,&lt;/P&gt;&lt;P&gt;        lp_icon like zpickdisp-lp_icon,&lt;/P&gt;&lt;P&gt;        pc_icon like zpickdisp-pc_icon,&lt;/P&gt;&lt;P&gt;        lv_icon like zpickdisp-lv_icon,&lt;/P&gt;&lt;P&gt;        vm_icon like zpickdisp-vm_icon,&lt;/P&gt;&lt;P&gt;        em_icon like zpickdisp-em_icon,&lt;/P&gt;&lt;P&gt;        t_ovst_tab like t_disp_tab with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  constants: c_col1(3) value 'C10',&lt;/P&gt;&lt;P&gt;             c_col2(3) value 'C20'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  sort t_data_tab by lgtor vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  w_color = c_col2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_data_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    at new lgtor.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    fill ALV header table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      clear w_disp_head.&lt;/P&gt;&lt;P&gt;      w_disp_head-lgtor = t_data_tab-lgtor.&lt;/P&gt;&lt;P&gt;      append w_disp_head to t_disp_head.&lt;/P&gt;&lt;P&gt;    endat.&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;  goods issue status &amp;amp; overall amber/green only&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    case t_data_tab-wbstk.&lt;/P&gt;&lt;P&gt;      when c_c.&lt;/P&gt;&lt;P&gt;        move icon_green_light to gi_icon.&lt;/P&gt;&lt;P&gt;        move icon_green_light to ov_icon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      when others.&lt;/P&gt;&lt;P&gt;        move icon_red_light to gi_icon.&lt;/P&gt;&lt;P&gt;        move icon_yellow_light to ov_icon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  transfer order status&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    case t_data_tab-lvsta.&lt;/P&gt;&lt;P&gt;      when c_a.&lt;/P&gt;&lt;P&gt;        move icon_red_light to to_icon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      when c_b.&lt;/P&gt;&lt;P&gt;        move icon_yellow_light to to_icon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      when c_c.&lt;/P&gt;&lt;P&gt;        move icon_green_light to to_icon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      when space.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      write N/A&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        to_icon = 'N/A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  loaded to pallet status&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    if not t_data_tab-zpallet_no is initial.&lt;/P&gt;&lt;P&gt;      move icon_green_light to lp_icon.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      move icon_red_light to lp_icon.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  pallet count status&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    if not t_data_tab-zcount_check is initial.&lt;/P&gt;&lt;P&gt;      move icon_green_light to pc_icon.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      move icon_red_light to pc_icon.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  loaded to van status&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    if not t_data_tab-zvan_no is initial.&lt;/P&gt;&lt;P&gt;      move icon_green_light to lv_icon.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      move icon_red_light to lv_icon.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  van manifest status&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    if not t_data_tab-zvan_print is initial.&lt;/P&gt;&lt;P&gt;      move icon_green_light to vm_icon.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      move icon_red_light to vm_icon.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  end of day manifest status&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    if not t_data_tab-zeod_print is initial.&lt;/P&gt;&lt;P&gt;      move icon_green_light to em_icon.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      move icon_red_light to em_icon.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  move working data table to display table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    move-corresponding t_data_tab to w_disp_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    w_disp_tab-ov_icon = ov_icon.&lt;/P&gt;&lt;P&gt;    w_disp_tab-gi_icon = gi_icon.&lt;/P&gt;&lt;P&gt;    w_disp_tab-to_icon = to_icon.&lt;/P&gt;&lt;P&gt;    w_disp_tab-lp_icon = lp_icon.&lt;/P&gt;&lt;P&gt;    w_disp_tab-pc_icon = pc_icon.&lt;/P&gt;&lt;P&gt;    w_disp_tab-lv_icon = lv_icon.&lt;/P&gt;&lt;P&gt;    w_disp_tab-vm_icon = vm_icon.&lt;/P&gt;&lt;P&gt;    w_disp_tab-em_icon = em_icon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    w_disp_tab-color = w_color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  fill N/A values for initial fields for display&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    if w_disp_tab-packvorschr is initial.&lt;/P&gt;&lt;P&gt;      w_disp_tab-packvorschr = 'N/A'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if w_disp_tab-exidv is initial.&lt;/P&gt;&lt;P&gt;      w_disp_tab-exidv = 'N/A'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if w_disp_tab-zpallet_no is initial.&lt;/P&gt;&lt;P&gt;      write 'N/A' to w_disp_tab-zpallet_no.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if w_disp_tab-zvan_no is initial.&lt;/P&gt;&lt;P&gt;      write 'N/A' to w_disp_tab-zvan_no.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  display different color for new doc number&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    at end of vbeln.&lt;/P&gt;&lt;P&gt;      if w_color = c_col1.&lt;/P&gt;&lt;P&gt;        w_color = c_col2.&lt;/P&gt;&lt;P&gt;      elseif w_color = c_col2.&lt;/P&gt;&lt;P&gt;        w_color = c_col1.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    append w_disp_tab to t_disp_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    clear w_disp_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;we have all the icons in display but need to check the overall status&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;as this refers to the line items&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;green and amber statuses already set and use the same criteria as the&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;goods issue status unless detected as red here&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data: ov_stat_red(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear w_disp_tab.&lt;/P&gt;&lt;P&gt;  sort t_disp_tab by vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_disp_tab into w_disp_tab.&lt;/P&gt;&lt;P&gt;    at new vbeln.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    check all line items for delivery&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      loop at t_data_tab where vbeln = w_disp_tab-vbeln.&lt;/P&gt;&lt;P&gt;        if t_data_tab-lvsta = c_a.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        set overall status to red&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          ov_stat_red = c_yes.&lt;/P&gt;&lt;P&gt;          exit.&lt;/P&gt;&lt;P&gt;        else.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        leave green/amber status icon as previosly determined&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      if ov_stat_red = c_yes.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      set overall status to red for all items in that delivery&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        clear ov_stat_red.&lt;/P&gt;&lt;P&gt;        move icon_red_light to w_disp_tab-ov_icon.&lt;/P&gt;&lt;P&gt;        modify t_disp_tab from w_disp_tab transporting ov_icon&lt;/P&gt;&lt;P&gt;                          where vbeln = w_disp_tab-vbeln.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    endat.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " select_icons&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 04:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944766#M389526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T04:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944767#M389527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to declare the type-pools in ICON in your program.&lt;/P&gt;&lt;P&gt;You can output certain characters as icons using the addition ...AS ICON. You should only address these characters with their system-defined names.&lt;/P&gt;&lt;P&gt;u have to write it to the list using WRITE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synatax :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / ICON_RED_LIGHT  AS ICON. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;similarly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Green light : &lt;/P&gt;&lt;P&gt;ICON_GREEN_LIGHT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Yellow light :&lt;/P&gt;&lt;P&gt;ICON_YELLOW_LIGHT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clue may solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 04:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944767#M389527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T04:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944768#M389528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wht is &amp;lt;b&amp;gt;zpickdisp&amp;lt;/b&amp;gt; in the code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 05:08:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944768#M389528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T05:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944769#M389529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;still need some reponses&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 05:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944769#M389529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T05:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944770#M389530</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;Goto ICON type group in SE11 and copy the code for the icon and display the same in your output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ICON_4 ICON_GREEN_LIGHT               '@08@'."  Green light; positive&lt;/P&gt;&lt;P&gt;ICON_4 ICON_YELLOW_LIGHT              '@09@'."  Yellow light; neutral&lt;/P&gt;&lt;P&gt;ICON_4 ICON_RED_LIGHT                 '@0A@'."  Red light; negative&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;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 05:31:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944770#M389530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T05:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944771#M389531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;  CASE value.
    WHEN 1.
      icon_name = 'ICON_GREEN_LIGHT'.
      icon_text =  text-003.
    WHEN 2.
      icon_name = 'ICON_YELLOW_LIGHT'.
      icon_text =  text-002.
    WHEN 3.
      icon_name = 'ICON_RED_LIGHT'.
      icon_text =  text-001.
  ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer this program in SE38 , DEMO_DYNPRO_STATUS_ICONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if u find helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Feb 2007 05:33:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944771#M389531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-28T05:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944772#M389532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2007 07:25:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-icon/m-p/1944772#M389532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-01T07:25:44Z</dc:date>
    </item>
  </channel>
</rss>

