<?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: Dynamic field Select from table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450361#M1413660</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sahoo,&lt;/P&gt;&lt;P&gt;Pllease follow below steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1, Create internal table with field &lt;STRONG&gt;Fieldname TYPE FIELDNAME&lt;/STRONG&gt; (Say ITAB)&lt;/P&gt;&lt;P&gt;2. Append Fields (thats you want to select) to internal table [at run time]&lt;/P&gt;&lt;P&gt;3. Use&lt;/P&gt;&lt;P&gt;SELECT (ITAB)&lt;/P&gt;&lt;P&gt;              into table &amp;lt;table&amp;gt;&lt;/P&gt;&lt;P&gt;              from &amp;lt;DB&amp;gt;&lt;/P&gt;&lt;P&gt;              where &amp;lt;cond&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Nag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jan 2010 05:20:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-11T05:20:46Z</dc:date>
    <item>
      <title>Dynamic field Select from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450359#M1413658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have to select certain field from table. The field which I have to select I do not know. &lt;/P&gt;&lt;P&gt;It will come dynamically from program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me what is correct statement to execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;S Sahoo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2010 05:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450359#M1413658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-11T05:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic field Select from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450360#M1413659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT (FIELD_NAME) FROM &amp;lt;dbtab&amp;gt;&lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;SUMIT NENE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2010 05:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450360#M1413659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-11T05:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic field Select from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450361#M1413660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sahoo,&lt;/P&gt;&lt;P&gt;Pllease follow below steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1, Create internal table with field &lt;STRONG&gt;Fieldname TYPE FIELDNAME&lt;/STRONG&gt; (Say ITAB)&lt;/P&gt;&lt;P&gt;2. Append Fields (thats you want to select) to internal table [at run time]&lt;/P&gt;&lt;P&gt;3. Use&lt;/P&gt;&lt;P&gt;SELECT (ITAB)&lt;/P&gt;&lt;P&gt;              into table &amp;lt;table&amp;gt;&lt;/P&gt;&lt;P&gt;              from &amp;lt;DB&amp;gt;&lt;/P&gt;&lt;P&gt;              where &amp;lt;cond&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Nag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2010 05:20:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450361#M1413660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-11T05:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic field Select from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450362#M1413661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use fm &lt;STRONG&gt;FREE_SELECTIONS_DIALOG,RKD_SEL_BUILD_WHERE_CLAUSE,RH_DYNAMIC_WHERE_BUILD&lt;/STRONG&gt; , for more details search in SCN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer link:[http://www.sap-img.com/abap/how-can-we-give-dynamic-table-name-in-select-statement.htm]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2010 05:24:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450362#M1413661</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-11T05:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic field Select from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450363#M1413662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please folow this link &lt;A href="http://help.sap.com/search/highlightContent.jsp" target="test_blank"&gt;http://help.sap.com/search/highlightContent.jsp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2010 05:26:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-select-from-table/m-p/6450363#M1413662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-11T05:26:56Z</dc:date>
    </item>
  </channel>
</rss>

