<?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: Table type and line type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615641#M870988</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;you have table type TDT_DOCFLOW and line type TDS_DOCFLOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first you have to know what is the use of table type and line type.you will create table type in se11 using line type (which is nothing but name of a structutre or table).you will find the use of table type in ooabap.while creating any class you dont have tables parameter for mathods  like functional modules.so you will create a table type and you will use this table type as export parameter.&lt;/P&gt;&lt;P&gt;usage of table type and line type in abap program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:it_docflow type TDT_DOCFLOW.&lt;/P&gt;&lt;P&gt;data:wa_docflow type TDs_DOCFLOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_docflow-field = 'value'.&lt;/P&gt;&lt;P&gt;append wa_docflow to it_docflow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_docflow into wa_docflow.&lt;/P&gt;&lt;P&gt;write: / wa_docflow-field.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 2, 2008 1:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Apr 2008 16:54:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-02T16:54:07Z</dc:date>
    <item>
      <title>Table type and line type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615638#M870985</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;There is a table type TDT_DOCFLOW and TDS_DOCFLOW as line type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to define internal table and workarea for above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Zakir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 14:15:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615638#M870985</guid>
      <dc:creator>former_member463678</dc:creator>
      <dc:date>2008-04-02T14:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table type and line type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615639#M870986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: itab type TDT_DOCFLOW.&lt;/P&gt;&lt;P&gt;data: line type TDS_DOCFLOW .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 14:19:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615639#M870986</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-04-02T14:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Table type and line type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615640#M870987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
  data: I_DOCFLOW type TDT_DOCFLOW,
          WA_DOCFLOW type TDS_DOCFLOW.

"Populate table I_DOCFLOW...
....
LOOP AT i_docflow INTO wa_docflow.
....
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 14:21:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615640#M870987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T14:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table type and line type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615641#M870988</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;you have table type TDT_DOCFLOW and line type TDS_DOCFLOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first you have to know what is the use of table type and line type.you will create table type in se11 using line type (which is nothing but name of a structutre or table).you will find the use of table type in ooabap.while creating any class you dont have tables parameter for mathods  like functional modules.so you will create a table type and you will use this table type as export parameter.&lt;/P&gt;&lt;P&gt;usage of table type and line type in abap program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:it_docflow type TDT_DOCFLOW.&lt;/P&gt;&lt;P&gt;data:wa_docflow type TDs_DOCFLOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_docflow-field = 'value'.&lt;/P&gt;&lt;P&gt;append wa_docflow to it_docflow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_docflow into wa_docflow.&lt;/P&gt;&lt;P&gt;write: / wa_docflow-field.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 2, 2008 1:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 16:54:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615641#M870988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T16:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Table type and line type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615642#M870989</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;do like this ....get the structure of the table first and declare like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type &amp;lt;structure of the table&amp;gt; occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 17:01:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-and-line-type/m-p/3615642#M870989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T17:01:09Z</dc:date>
    </item>
  </channel>
</rss>

