<?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 Deep Structures in the Dictionary in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007994#M409488</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have create a local type in my program as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF ty_local_type.
         INCLUDE some_structure.
TYPES:   tline TYPE tline OCCURS 0,
       END OF ty_local_type.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine, however I need the type to also be available in a smartform so I need to create it in the dictionary (SE11) instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone describe how to include a &amp;lt;b&amp;gt;table&amp;lt;/b&amp;gt; (specifically "tline") into a structure in the dictionary?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Mar 2007 10:20:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-14T10:20:50Z</dc:date>
    <item>
      <title>Deep Structures in the Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007994#M409488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have create a local type in my program as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF ty_local_type.
         INCLUDE some_structure.
TYPES:   tline TYPE tline OCCURS 0,
       END OF ty_local_type.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine, however I need the type to also be available in a smartform so I need to create it in the dictionary (SE11) instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone describe how to include a &amp;lt;b&amp;gt;table&amp;lt;/b&amp;gt; (specifically "tline") into a structure in the dictionary?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 10:20:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007994#M409488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T10:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Structures in the Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007995#M409489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stuart,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to define a table type first. : z_t_tabletype&lt;/P&gt;&lt;P&gt;se11-&amp;gt;datatype-&amp;gt;create-&amp;gt; table type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can create a structure and make a component with tahe type z_t_tabletype.&lt;/P&gt;&lt;P&gt;se11: datatype-&amp;gt;create-&amp;gt;structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;br&lt;/P&gt;&lt;P&gt;Werner&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 10:30:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007995#M409489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T10:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Structures in the Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007996#M409490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A table type for the structure "tline" already exists - it is called "tline_t".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try to include tline_t (Edit -&amp;gt; Include -&amp;gt; Insert) I get the error "Tables of type Table type may not be included".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 10:33:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007996#M409490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T10:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Deep Structures in the Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007997#M409491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Doh. I appear to have been very dumb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's not Edit -&amp;gt; Include -&amp;gt; Insert I should be using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You simply use the table type in the component type field of the structure component.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 11:05:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deep-structures-in-the-dictionary/m-p/2007997#M409491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T11:05:13Z</dc:date>
    </item>
  </channel>
</rss>

