<?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: difference between two type statement. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739260#M899999</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sivanantham,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF mytext,&lt;/P&gt;&lt;P&gt;number TYPE i,&lt;/P&gt;&lt;P&gt;name(10) TYPE c,&lt;/P&gt;&lt;P&gt;END OF mytext. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This defines a structure with two fields.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES mytab TYPE STANDARD TABLE OF mytext WITH DEFAULT KEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This creates a table for the above defined structure.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hemant Khemani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 04:29:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-05T04:29:27Z</dc:date>
    <item>
      <title>difference between two type statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739256#M899995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the difference between these statement ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF mytext,&lt;/P&gt;&lt;P&gt;         number TYPE i,&lt;/P&gt;&lt;P&gt;         name(10) TYPE c,&lt;/P&gt;&lt;P&gt;       END OF mytext.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES mytab TYPE STANDARD TABLE OF mytext WITH DEFAULT KEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your help.&lt;/P&gt;&lt;P&gt;-siva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sivanantham kandan on May 5, 2008 6:23 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 04:20:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739256#M899995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T04:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: difference between two type statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739257#M899996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TYPES: BEGIN OF mytext,&lt;/P&gt;&lt;P&gt;number TYPE i,&lt;/P&gt;&lt;P&gt;name(10) TYPE c,&lt;/P&gt;&lt;P&gt;END OF mytext.  -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt; &lt;STRONG&gt;Declaring an internal table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data :&lt;/STRONG&gt; mytab TYPE STANDARD TABLE OF mytext WITH DEFAULT KEY.  ---&amp;gt; &lt;STRONG&gt;Creating Data object&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kannaiah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 04:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739257#M899996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T04:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: difference between two type statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739258#M899997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;earlier one is used to define customized type... the late one is to use standard data type available...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 04:25:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739258#M899997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T04:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: difference between two type statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739259#M899998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     In first type statement "A structure is made in which the fields are directly attached to the data element"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      In second statement "A table is created of the above defined structure with default key as the first field of the table".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful,&lt;/P&gt;&lt;P&gt;kushagra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 04:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739259#M899998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T04:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: difference between two type statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739260#M899999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sivanantham,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF mytext,&lt;/P&gt;&lt;P&gt;number TYPE i,&lt;/P&gt;&lt;P&gt;name(10) TYPE c,&lt;/P&gt;&lt;P&gt;END OF mytext. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This defines a structure with two fields.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES mytab TYPE STANDARD TABLE OF mytext WITH DEFAULT KEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This creates a table for the above defined structure.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hemant Khemani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 04:29:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739260#M899999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T04:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: difference between two type statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739261#M900000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            TYPES: BEGIN OF mytext,&lt;/P&gt;&lt;P&gt;number TYPE i,&lt;/P&gt;&lt;P&gt;name(10) TYPE c,&lt;/P&gt;&lt;P&gt;END OF mytext.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES mytab TYPE STANDARD TABLE OF mytext WITH DEFAULT KEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fiirst one is a structure with two fields namely number and name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other one is an internal table with the type of the structure and the first field as the key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Sirisha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 04:50:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739261#M900000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T04:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: difference between two type statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739262#M900001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;P&gt;-siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 12:03:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-two-type-statement/m-p/3739262#M900001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T12:03:09Z</dc:date>
    </item>
  </channel>
</rss>

