<?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 calling data dictionary table dynamically into select query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851320#M360549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am having all the SD related data dictionary table into one of the internal table( it consist of  views , clusters , tables, individual transaction object and logical transport object).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my query is that, i want to get each/individual dictionary table from the internal table , that may be view,cluster etc, and get the detailed information of that particular table using select query and show it into excel sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i also want all my views to be in one excel sheet, cluster into one sheet and remaining other table with the proper header. while displaying the information there should not be any duplicate and each field should be properly assign to the header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and similarly i also want each table to be displayed in separate spread sheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Jan 2007 13:16:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-05T13:16:46Z</dc:date>
    <item>
      <title>calling data dictionary table dynamically into select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851320#M360549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am having all the SD related data dictionary table into one of the internal table( it consist of  views , clusters , tables, individual transaction object and logical transport object).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my query is that, i want to get each/individual dictionary table from the internal table , that may be view,cluster etc, and get the detailed information of that particular table using select query and show it into excel sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i also want all my views to be in one excel sheet, cluster into one sheet and remaining other table with the proper header. while displaying the information there should not be any duplicate and each field should be properly assign to the header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and similarly i also want each table to be displayed in separate spread sheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2007 13:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851320#M360549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-05T13:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: calling data dictionary table dynamically into select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851321#M360550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually it is possible to generate a select statement dynamically, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    select single abc&lt;/P&gt;&lt;P&gt;      from (iv_tabname)&lt;/P&gt;&lt;P&gt;      into ev_tstrid&lt;/P&gt;&lt;P&gt;      where (lt_cond).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the code above the iv_tabname is table name and it_cond is the internal table containing the conditions for selection....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2007 13:37:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851321#M360550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-05T13:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: calling data dictionary table dynamically into select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851322#M360551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am not having table name, i have to get it from the internal table.&lt;/P&gt;&lt;P&gt;tell me where the table will be retrieved from internal table and from the retrieve table get the detail list of that  table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2007 14:12:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851322#M360551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-05T14:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: calling data dictionary table dynamically into select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851323#M360552</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;&lt;/P&gt;&lt;P&gt;select table info_tabl (view from dd02l and tadir)&lt;/P&gt;&lt;P&gt;with coressponding packages of SD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; SELECT TABNAME devclass FROM  INFO_TABL INTO TABLE itab
         WHERE  TABNAME IN TABN
         AND    DEVCLASS = DEVC
         AND    tabclass = 'TRANSP'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2007 14:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851323#M360552</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2007-01-05T14:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: calling data dictionary table dynamically into select query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851324#M360553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u send me clearly how to write, &lt;/P&gt;&lt;P&gt;for ex, in my internal table i am having 4 tables&lt;/P&gt;&lt;P&gt;VVC_T682_CC ,&lt;/P&gt;&lt;P&gt;V_T134_V  ,&lt;/P&gt;&lt;P&gt;TVSHP      ,&lt;/P&gt;&lt;P&gt;VVC_T682_VB ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all these r views, now how will we write the code&lt;/P&gt;&lt;P&gt;send me in with proper steps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jan 2007 11:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-data-dictionary-table-dynamically-into-select-query/m-p/1851324#M360553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-08T11:47:19Z</dc:date>
    </item>
  </channel>
</rss>

