<?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 Select Multiple fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094133#M1507549</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;Am an ABAP novice... Have a requirement where I want to selct around 80 different fields from the table MARA and populate into an internal table..The simple select statement  would be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select fld1........fld 80 from MARA into.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way that I do not have to mention each and every of the FLd 1 to 50 in my select stmnt and still be able to select all required fields in a single select statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a way it would make my task much easier and I guess would be better programming...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;VK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jun 2010 19:17:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-28T19:17:02Z</dc:date>
    <item>
      <title>Select Multiple fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094133#M1507549</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;Am an ABAP novice... Have a requirement where I want to selct around 80 different fields from the table MARA and populate into an internal table..The simple select statement  would be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select fld1........fld 80 from MARA into.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way that I do not have to mention each and every of the FLd 1 to 50 in my select stmnt and still be able to select all required fields in a single select statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a way it would make my task much easier and I guess would be better programming...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;VK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094133#M1507549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T19:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Select Multiple fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094134#M1507550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select *&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094134#M1507550</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-06-28T19:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Select Multiple fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094135#M1507551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;

data itab type standard table of mara.

Select *
from   mara
into corresponding fields of table itab.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mishra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:26:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094135#M1507551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T19:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Select Multiple fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094136#M1507552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Unfortunately, this forum is not a place to learn ABAP. I suggest that you get one of the good ABAP books that are out there and maybe join an internet forum that caters to beginners

And proofread you question before posting it. Leaving obvious errors gives the impression that you don't really care. Do you have 50 or 80 fields to SELECT?

thread locked

Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:34:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-multiple-fields/m-p/7094136#M1507552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T19:34:48Z</dc:date>
    </item>
  </channel>
</rss>

