<?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: reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180935#M1713078</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you can use&lt;STRONG&gt; LIKE&lt;/STRONG&gt; statement in your select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; background-color: #e1ebf2;"&gt;SELECT * FORM ABC WHERE USER_ID like "A%"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jan 2013 13:31:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-01-14T13:31:17Z</dc:date>
    <item>
      <title>reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180934#M1713077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;suppose I have 100 entries of student information in my database , so I want to write a select query such that if I press&amp;nbsp;&amp;nbsp;&amp;nbsp; A*&amp;nbsp;&amp;nbsp; then all the entries of student's name starting with char A...... should display, can anyone suggest the select query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2013 13:26:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180934#M1713077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-14T13:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180935#M1713078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you can use&lt;STRONG&gt; LIKE&lt;/STRONG&gt; statement in your select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; background-color: #e1ebf2;"&gt;SELECT * FORM ABC WHERE USER_ID like "A%"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2013 13:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180935#M1713078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-14T13:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180936#M1713079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a very basic concept...you would supply a parameter or select-options statement for the name (last name ?).&amp;nbsp; the user would input A* and execute..&amp;nbsp; Your Open SQL would do a select where last name eq (for parameters) or IN (for select options), into an internal table.&amp;nbsp; You would then loop over that table and write the content or use SALV (see demo programs named like SALV*) to display what you had retrieved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, note that these forums are not intended to be basic ABAP training classes.&amp;nbsp; There are many good materials on how to wite ABAP code, available from a variety of sources, including SAP Press.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2013 13:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180936#M1713079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-01-14T13:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180937#M1713080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaladhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="UserInput3"&gt;SELECT data&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="UserInput3"&gt;from DBTAB&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="UserInput3"&gt;into ITAB&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="UserInput3"&gt;WHERE &amp;lt;&lt;SPAN style="color: blue;"&gt;field&amp;gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="UserInput3"&gt;&lt;/SPAN&gt;&lt;SPAN class="UserInput3"&gt;&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt; LIKE var.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;where var = 'A*' or 'A%'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2013 13:39:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/9180937#M1713080</guid>
      <dc:creator>former_member491621</dc:creator>
      <dc:date>2013-01-14T13:39:15Z</dc:date>
    </item>
  </channel>
</rss>

