<?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 Data Dictionary Structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-structure/m-p/1011119#M78946</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;I was wondering if anyone would have a function call that would pull back the data dictionary structure for tables like TVARV. I tried VIEW_GET_DDIC_INFO but I recieve and error saying that no TVDIR entry exsits. Is there anything else that might work? If not is there a table that I could use to pull a select for all the table field information?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jul 2005 20:39:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-27T20:39:21Z</dc:date>
    <item>
      <title>Data Dictionary Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-structure/m-p/1011119#M78946</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;I was wondering if anyone would have a function call that would pull back the data dictionary structure for tables like TVARV. I tried VIEW_GET_DDIC_INFO but I recieve and error saying that no TVDIR entry exsits. Is there anything else that might work? If not is there a table that I could use to pull a select for all the table field information?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2005 20:39:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-structure/m-p/1011119#M78946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-27T20:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-structure/m-p/1011120#M78947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here ya go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002.


data: ddfields type table of ddfield with header line.

parameters: p_tab(30) type c.

call function 'DD_NAMETAB_TO_DDFIELDS'
  exporting
*   KEYFIELDS       = 'X'
*   NULLABLE        = 'X'
    tabname         = p_tab
* IMPORTING
*   SUBRC           =
  tables
    ddfields        = ddfields.


loop at ddfields.
  write:/ ddfields-fieldname,
          ddfields-position,
          ddfields-keyflag,
          ddfields-datatype,
          ddfields-leng,
          ddfields-decimals,
          ddfields-nullable.
endloop.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this post has helped you, please award points accordingly.   Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2005 20:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-structure/m-p/1011120#M78947</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-27T20:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-structure/m-p/1011121#M78948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you that works perfectly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2005 20:53:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-structure/m-p/1011121#M78948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-27T20:53:08Z</dc:date>
    </item>
  </channel>
</rss>

