<?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 how to call 50 fields from table example sflight into sql statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491974#M1932171</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts&amp;nbsp; i have to write a prog with 3 tables and in 1st table I have to call 50 fields carrid connid fldate price......... till 50.&lt;/P&gt;&lt;P&gt;it takes lot of time to write each and every field.so, how to call those fields in sql statement any short cut or tips...&lt;/P&gt;&lt;P&gt;thank you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jan 2016 16:13:01 GMT</pubDate>
    <dc:creator>former_member609183</dc:creator>
    <dc:date>2016-01-06T16:13:01Z</dc:date>
    <item>
      <title>how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491974#M1932171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts&amp;nbsp; i have to write a prog with 3 tables and in 1st table I have to call 50 fields carrid connid fldate price......... till 50.&lt;/P&gt;&lt;P&gt;it takes lot of time to write each and every field.so, how to call those fields in sql statement any short cut or tips...&lt;/P&gt;&lt;P&gt;thank you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 16:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491974#M1932171</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-06T16:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491975#M1932172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It probably takes less time to type them in than asking the question here and waiting for an answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/74/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 16:30:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491975#M1932172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-06T16:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491976#M1932173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Akshay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interesting requirement you have, one way off the top of my head i can think possible doing this would be to dynamically generate parts of the sql statement using concatenation of strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do this i would use the FM &lt;SPAN style="color: #333333; font-size: 12px;"&gt;GET_COMPONENT_LIST which will return all the details about your ITAB. Then use a loop to loop through the result set and concatenate the field names into a string variable. Once you have done that you just use the string variable in place of the field names in the sql statement and SAP will run the query. I've done this before when i had to take dynamic list of conditions into consideration.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code for the sql should look something like this Select (select_condition) FROM table_name ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the ( ) are required for ABAP to treat the string as actual input into the sql. Below is an example i've done in a program before &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TABLE &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Z_SPL_AUDIT'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCATENATE &lt;/SPAN&gt;WHERE_CLS_1 &lt;SPAN class="L0S33"&gt;'=' &lt;/SPAN&gt;STATUS &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;WHERE_CLS_1 &lt;SPAN class="L0S52"&gt;SEPARATED &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BY &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CONCATENATE &lt;/SPAN&gt;DATE_FIELD &lt;SPAN class="L0S33"&gt;'BETWEEN' &lt;/SPAN&gt;DATE_LOW &lt;SPAN class="L0S33"&gt;'AND' &lt;/SPAN&gt;DATE_HIGH &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;WHERE_CLS_2 &lt;SPAN class="L0S52"&gt;SEPARATED &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BY &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;' '&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;* &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;CORRESPONDING &lt;SPAN class="L0S52"&gt;FIELDS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;REPORT_T_FINAL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;WHERE_CLS_1&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;WHERE_CLS_2&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The only unknown i have is i have not tried this dynamic approach in the actual Select portion only in the table and where clause but i would expect it to work still.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Geoffery&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 16:37:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491976#M1932173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-06T16:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491977#M1932174</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;Is this an interview question?&lt;/P&gt;&lt;P&gt;Why not just use select * into corresponding.&lt;/P&gt;&lt;P&gt;The structure of the internal table though has to have the 50 fields with the exact same name that it appears in database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 16:41:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491977#M1932174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-06T16:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491978#M1932175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SE11. Copy and paste. Simples.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:01:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491978#M1932175</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-01-06T17:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491979#M1932176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Akshay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/862992" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/862993" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/863012" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/863013" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY_MARA&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MATNR &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;MARA&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;MATNR&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ERSDA &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;MARA&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;ERSDA&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ERNAM &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;MARA&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;ERNAM&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LAEDA &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;MARA&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;LAEDA&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY_MARA&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Just copy the fields to select Query.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Hope it helpful,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Venkat.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:02:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491979#M1932176</guid>
      <dc:creator>VenkatRamesh_V</dc:creator>
      <dc:date>2016-01-06T17:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491980#M1932177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it doesn't matter with no. if i have to write 250 fields then it takes time right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:-&lt;/P&gt;&lt;P&gt;select carrid connid fldate price........250th field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to write above mentioned example of sql stat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:12:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491980#M1932177</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-06T17:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491981#M1932178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;bro i know that technique.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want sol for the below shown example&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ex:-&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;select carrid connid fldate price........250th field.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;how to write above mentioned example of sql stat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:14:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491981#M1932178</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-06T17:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491982#M1932179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to cop from se11.&lt;/P&gt;&lt;P&gt;should i copy each and every field. if so, for n example i have 250 fields then what should i do.&lt;/P&gt;&lt;P&gt;my requirement is show below as example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ex:-&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;select carrid connid fldate price........250th field.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;how to write above mentioned example of sql stat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:16:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491982#M1932179</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-06T17:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491983#M1932180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is not a interview question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i use select *&amp;nbsp; into corresponding&amp;nbsp;&amp;nbsp;&amp;nbsp; then performance drops.&lt;/P&gt;&lt;P&gt;&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;Akshay Labhishetty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:21:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491983#M1932180</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-06T17:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491984#M1932181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No - INTO CORRESPONDING won't give much of a performance hit. There are plenty of discussions on that topic in the ABAP space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:25:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491984#M1932181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-06T17:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491985#M1932182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried Ctrl + Y to copy the fields from SE11?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491985#M1932182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-06T17:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491986#M1932183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no. will it happen. &lt;/P&gt;&lt;P&gt;if so&lt;/P&gt;&lt;P&gt;i need particular fields then what shuld i do&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491986#M1932183</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-06T17:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491987#M1932184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you saying that you need the first 50 fields in the structure or 50 particular fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In any event, I think you have enough answers to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 17:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491987#M1932184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-06T17:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491988#M1932185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need solution for both the case. &lt;/P&gt;&lt;P&gt;i.e For 1st 50 and for particular 50.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 18:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491988#M1932185</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-06T18:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491989#M1932186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have to manually put in more than ~20 fields then you're doing something wrong. Maybe the spec is wrong, maybe the requirement is silly. But chances are - it isn't necessary. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 19:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491989#M1932186</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-01-06T19:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491990#M1932187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT * may be a performance hit - especially with HANA. I've had massive gains in non-HANA and HANA systems by replacing * with a field list. However, as I said above, I can't think I've ever had to do more that ~20 fields. The fact is very very few realistic programs actually need more data than that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT INTO TABLE and SELECT INTO CORRESPONDING FIELDS OF TABLE are, as you say, performance-wise pretty much identical.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 19:04:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491990#M1932187</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-01-06T19:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491991#M1932188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you cannot answer the question of why you &lt;STRONG&gt;need&lt;/STRONG&gt; to have such a ridiculously high number of fields I will lock this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You've already had a lot of guidance over what appears, frankly, to be quite a trivial issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2016 19:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491991#M1932188</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-01-06T19:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491992#M1932189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yea i know&amp;nbsp; that i dont have requirement with 50 fileds. If the requirement comes then what should i do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2016 02:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491992#M1932189</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-07T02:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to call 50 fields from table example sflight into sql statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491993#M1932190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My friend gave me a task to write a report of any table with all the fields present in it. So i am asking here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2016 02:56:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-50-fields-from-table-example-sflight-into-sql-statement/m-p/11491993#M1932190</guid>
      <dc:creator>former_member609183</dc:creator>
      <dc:date>2016-01-07T02:56:35Z</dc:date>
    </item>
  </channel>
</rss>

