<?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: Local table types Usage? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350922#M1398862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The local table type can be used in subroutines when passing data using the USING or CHANGING parameter. The same holds true when you are using local classes and call a method. Then as your type you can using TYPE gtty_ekbe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Nov 2009 08:24:58 GMT</pubDate>
    <dc:creator>Sm1tje</dc:creator>
    <dc:date>2009-11-19T08:24:58Z</dc:date>
    <item>
      <title>Local table types Usage?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350921#M1398861</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;While going through the Advanced ABAP document, I found that we can declare a line type using the TYPES statement and using this line type we can declare a local table type.&lt;/P&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;      BEGIN OF gty_ekbe,       "Data from EKBE.&lt;/P&gt;&lt;P&gt;          matnr       TYPE    ekbe-matnr,&lt;/P&gt;&lt;P&gt;          werks       TYPE    ekbe-werks,&lt;/P&gt;&lt;P&gt;          bwart       TYPE    ekbe-bwart,      "Movement type&lt;/P&gt;&lt;P&gt;          bpwes       TYPE    ekbe-bpwes,      "Blocked stock&lt;/P&gt;&lt;P&gt;      END OF gty_ekbe.&lt;/P&gt;&lt;P&gt;TYPES: gtty_ekbe    TYPE STANDARD TABLE OF  gty_ekbe&lt;/P&gt;&lt;P&gt;                    WITH NON-UNIQUE KEY matnr werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      gt_ekbe_s     TYPE STANDARD TABLE OF  gty_ekbe&lt;/P&gt;&lt;P&gt;                    WITH NON-UNIQUE KEY matnr werks,&lt;/P&gt;&lt;P&gt;      gt_ekbe_tty   TYPE    gtty_ekbe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Query:&lt;/P&gt;&lt;P&gt;What is the significance of this..? I can declare a internal table using the Line type, then what extra we are achieving by declaring a local table type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide your opinions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;s@k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 07:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350921#M1398861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T07:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Local table types Usage?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350922#M1398862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The local table type can be used in subroutines when passing data using the USING or CHANGING parameter. The same holds true when you are using local classes and call a method. Then as your type you can using TYPE gtty_ekbe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 08:24:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350922#M1398862</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-11-19T08:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Local table types Usage?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350923#M1398863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are asking about TYPES statement then, it has lot of advantages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say, you can declare a type of your own, and it can be used in creating table type and line types, its generic and easy to use as when u need to change a structure of same type of object which are many times declared. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 09:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350923#M1398863</guid>
      <dc:creator>venkatesan_nagiah</dc:creator>
      <dc:date>2009-11-19T09:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Local table types Usage?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350924#M1398864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;line type refers to the structure of an internal table whereas row type is the actual part that contains the data and it refers to the table body.creating internal table using line type and row type concept is for reusability purpose.Line type and Row type are defined at DDIC LEVEL.&lt;/P&gt;&lt;P&gt;LINE TYPE CAN HOLD ONE RECORD. (WORK AREA)&lt;/P&gt;&lt;P&gt;ROW TYPE CAN HOLD MULTIPLE RECORDS. (BODY)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 12:25:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350924#M1398864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T12:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Local table types Usage?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350925#M1398865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friend  ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the  below  sap help  links  for the details of  both Line type &amp;amp; table type &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line Type:&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_nw04/helpdata/en/30/4fbac72e5f11d5b694006094192fe3/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Type:&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_nw04/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 20:09:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350925#M1398865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T20:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Local table types Usage?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350926#M1398866</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;Thanks a lot to everyone...:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;s@k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 12:06:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/local-table-types-usage/m-p/6350926#M1398866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-26T12:06:05Z</dc:date>
    </item>
  </channel>
</rss>

