<?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 Object oriented ALV with zebra layout in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131901#M988035</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;couldn't find anything regarding the above mentioned topic via search function so here my question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get a zebra layout while using the method cl_salv_table=&amp;gt;factory and further steps. Can someone post some example coding? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;Jan Schnee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Jul 2008 14:01:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-08T14:01:16Z</dc:date>
    <item>
      <title>Object oriented ALV with zebra layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131901#M988035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;couldn't find anything regarding the above mentioned topic via search function so here my question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get a zebra layout while using the method cl_salv_table=&amp;gt;factory and further steps. Can someone post some example coding? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;Jan Schnee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jul 2008 14:01:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131901#M988035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-08T14:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Object oriented ALV with zebra layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131902#M988036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report  zalvom_demo1.

data: ispfli type table of spfli.

data: gr_table     type ref to cl_salv_table.
data: gr_functions type ref to cl_salv_functions.
data: gr_display   type ref to cl_salv_display_settings.

start-of-selection.

  select * into table ispfli from spfli.

  cl_salv_table=&amp;gt;factory( importing r_salv_table = gr_table
                           changing t_table      = ispfli ).

  gr_functions = gr_table-&amp;gt;get_functions( ).
  gr_functions-&amp;gt;set_all( abap_true ).

  gr_display = gr_table-&amp;gt;get_display_settings( ).
  gr_display-&amp;gt;set_striped_pattern( cl_salv_display_settings=&amp;gt;true ).

  gr_table-&amp;gt;display( ).&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>Tue, 08 Jul 2008 14:20:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131902#M988036</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-07-08T14:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Object oriented ALV with zebra layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131903#M988037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thats it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jul 2008 14:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131903#M988037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-08T14:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Object oriented ALV with zebra layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131904#M988038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, no problem.  If your question is answered, you may want to mark it as "solved" next to the answer which answered it.  This will close your thread.  If you leave 10 or more questions open, you will not be able to ask anymore questions untill they are closed.  Thanks in advance and welcome to SDN.&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;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rich Heilman on Jul 8, 2008 10:31 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jul 2008 14:30:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131904#M988038</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-07-08T14:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Object oriented ALV with zebra layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131905#M988039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok thanks for the short guide! I think this wasn't the last time I posted something here! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 05:11:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-alv-with-zebra-layout/m-p/4131905#M988039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T05:11:11Z</dc:date>
    </item>
  </channel>
</rss>

