<?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: Sap select statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594057#M2010443</link>
    <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Thank you for visiting SAP Community to get answers to your questions. Since you're asking a question here for the first time, I recommend that you familiarize yourself with: &lt;A href="https://community.sap.com/resources/questions-and-answers" target="test_blank"&gt;https://community.sap.com/resources/questions-and-answers&lt;/A&gt;, as it provides tips for preparing questions that draw responses from our members. &lt;/P&gt;&lt;P&gt;For example, you can:&lt;/P&gt;&lt;P&gt;- outline what steps you took to find answers (and why they weren't helpful)&lt;/P&gt;&lt;P&gt;- share screenshots of what you've seen/done&lt;/P&gt;&lt;P&gt;- make sure you've applied the appropriate tags&lt;/P&gt;&lt;P&gt;- use a more descriptive subject line&lt;/P&gt;&lt;P&gt;The more details you provide, the more likely it is that members will be able to respond. Feel free to also take our Q&amp;amp;A  tutorial at: &lt;A href="https://developers.sap.com/tutorials/community-qa.html" target="test_blank"&gt;https://developers.sap.com/tutorials/community-qa.html&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Should you wish, you can revise your question by selecting Actions, then Edit.&lt;/P&gt;&lt;P&gt;By adding a picture to your profile you encourage readers to respond: &lt;A href="https://developers.sap.com/tutorials/community-profile.html" target="test_blank"&gt;https://developers.sap.com/tutorials/community-profile.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dedi&lt;/P&gt;</description>
    <pubDate>Mon, 09 May 2022 09:55:12 GMT</pubDate>
    <dc:creator>former_member27</dc:creator>
    <dc:date>2022-05-09T09:55:12Z</dc:date>
    <item>
      <title>Sap select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594056#M2010442</link>
      <description>&lt;P&gt;List all MATNRs from mara. Also create a coloumn heading for the list&lt;/P&gt;
  &lt;P&gt;How to do it with select statement&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 09:54:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594056#M2010442</guid>
      <dc:creator>former_member1340334</dc:creator>
      <dc:date>2022-05-09T09:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sap select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594057#M2010443</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Thank you for visiting SAP Community to get answers to your questions. Since you're asking a question here for the first time, I recommend that you familiarize yourself with: &lt;A href="https://community.sap.com/resources/questions-and-answers" target="test_blank"&gt;https://community.sap.com/resources/questions-and-answers&lt;/A&gt;, as it provides tips for preparing questions that draw responses from our members. &lt;/P&gt;&lt;P&gt;For example, you can:&lt;/P&gt;&lt;P&gt;- outline what steps you took to find answers (and why they weren't helpful)&lt;/P&gt;&lt;P&gt;- share screenshots of what you've seen/done&lt;/P&gt;&lt;P&gt;- make sure you've applied the appropriate tags&lt;/P&gt;&lt;P&gt;- use a more descriptive subject line&lt;/P&gt;&lt;P&gt;The more details you provide, the more likely it is that members will be able to respond. Feel free to also take our Q&amp;amp;A  tutorial at: &lt;A href="https://developers.sap.com/tutorials/community-qa.html" target="test_blank"&gt;https://developers.sap.com/tutorials/community-qa.html&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Should you wish, you can revise your question by selecting Actions, then Edit.&lt;/P&gt;&lt;P&gt;By adding a picture to your profile you encourage readers to respond: &lt;A href="https://developers.sap.com/tutorials/community-profile.html" target="test_blank"&gt;https://developers.sap.com/tutorials/community-profile.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dedi&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 09:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594057#M2010443</guid>
      <dc:creator>former_member27</dc:creator>
      <dc:date>2022-05-09T09:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sap select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594058#M2010444</link>
      <description>&lt;P&gt;Hi Nishant, &lt;/P&gt;&lt;P&gt;here a very simple example which selects all materials in the system and shows them in a ALV-Grid.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT matnr FROM mara&lt;BR /&gt;  INTO TABLE @DATA(lt_matnr).&lt;BR /&gt;&lt;BR /&gt;TRY.&lt;BR /&gt;    CALL METHOD cl_salv_table=&amp;gt;factory&lt;BR /&gt;      IMPORTING&lt;BR /&gt;        r_salv_table = DATA(lo_salv)&lt;BR /&gt;      CHANGING&lt;BR /&gt;        t_table      = lt_Matnr.&lt;BR /&gt;    lo_salv-&amp;gt;display( ).&lt;BR /&gt;  CATCH cx_salv_msg.&lt;BR /&gt;ENDTRY.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I hope this helps you and answers your question&lt;/P&gt;&lt;P&gt;Kind regards&lt;BR /&gt;Jens&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 11:17:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594058#M2010444</guid>
      <dc:creator>Jeansy</dc:creator>
      <dc:date>2022-05-09T11:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sap select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594059#M2010445</link>
      <description>&lt;P&gt;Using search tool, you would find many sapmles using a tool such as &lt;A href="https://launchpad.support.sap.com/#/solutions/notesv2/?q=CL_SALV_TABLE%252520sample"&gt;CL_SALV_TABLE&lt;/A&gt; or, for HANA, such as &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=CL_SALV_GUI_TABLE_IDA%252520sample"&gt;CL_SALV_GUI_TABLE_IDA&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 11:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-select-statement/m-p/12594059#M2010445</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2022-05-09T11:42:12Z</dc:date>
    </item>
  </channel>
</rss>

