<?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: KEYWORDS TYPE AND DATA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265206#M491438</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the diffrence :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Structure&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;types : begin of ty_itab,&lt;/P&gt;&lt;P&gt;           fld1(1) type c,&lt;/P&gt;&lt;P&gt;           end of ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data i_itab type standard table of ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i can not use types ty_itab in the program,if i use then i will get syntax error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types is nothing but structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data - related to work area or internal table,variable&lt;/P&gt;&lt;P&gt;you can use data statemnt in anywhere in the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2007 15:44:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-22T15:44:02Z</dc:date>
    <item>
      <title>KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265202#M491434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When is a types keyword used n when is the data keyword used?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 15:15:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265202#M491434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T15:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265203#M491435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES :  used to declare structures.

DATA : used to declare internal tables and simple data declarations

types : begin of ty_itab,
             matnr like mara-matnr,
             maktx like makt-maktx,
           end of ty_itab.

data : itab type table of ty_itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 15:19:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265203#M491435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T15:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265204#M491436</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;TYPES key word is used declaring local types within the program...TYPES key word cannot be used to store values in the run time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA key word is used to declare variable/structure or internal table..Using which you can store values in the run time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 15:20:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265204#M491436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T15:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265205#M491437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;LIKE means the datatype of the variable is similar to the referenced variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE means it is a predefined data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: &lt;/P&gt;&lt;P&gt;DATA int TYPE i.&lt;/P&gt;&lt;P&gt;Here int is of integer data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA var LIKE int.&lt;/P&gt;&lt;P&gt;var IS a variable having same data type of int. which in turn is integer.&lt;/P&gt;&lt;P&gt;You can find these helpful when you reference database table variables... You need not know what is the datatype defined. &lt;/P&gt;&lt;P&gt;Also it adds to FLEXIBILITY.&lt;/P&gt;&lt;P&gt;Whenever you make changes to your database tables and fields,&lt;/P&gt;&lt;P&gt;that change is REFLECTED back to your program that is,&lt;/P&gt;&lt;P&gt;You need not change all your program code when you change your table fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For TYPE&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For LIKE&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb367a358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb367a358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 15:39:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265205#M491437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T15:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265206#M491438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the diffrence :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Structure&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;types : begin of ty_itab,&lt;/P&gt;&lt;P&gt;           fld1(1) type c,&lt;/P&gt;&lt;P&gt;           end of ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data i_itab type standard table of ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i can not use types ty_itab in the program,if i use then i will get syntax error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types is nothing but structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data - related to work area or internal table,variable&lt;/P&gt;&lt;P&gt;you can use data statemnt in anywhere in the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 15:44:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265206#M491438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T15:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265207#M491439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have seen that using data also we can create a stucture with ocurrs 0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 15:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265207#M491439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T15:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265208#M491440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when you see occurs 0,nothing but internal table,&lt;/P&gt;&lt;P&gt;this is not structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 15:53:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265208#M491440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T15:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265209#M491441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes its an internal table but using both the keywords  can we create a structure ?is it correct to use the data keyword to create a structure?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 15:59:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265209#M491441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T15:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265210#M491442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data wa_itab like line of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is work area also we call as structure ,it will have only one record during runtime,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where as internal table ,it will have many records during run time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you use types statment in the data decalration and you can not use in select query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 16:02:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265210#M491442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T16:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265211#M491443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 16:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265211#M491443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T16:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: KEYWORDS TYPE AND DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265212#M491444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;types&amp;lt;/b&amp;gt; is data type which doen't have memory space to hlod data,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data&amp;lt;/b&amp;gt; is data object which has memory space to hold data,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;types&amp;lt;/b&amp;gt; keywords are attributes to the &amp;lt;b&amp;gt;data&amp;lt;/b&amp;gt; keywords.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 10:59:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keywords-type-and-data/m-p/2265212#M491444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T10:59:35Z</dc:date>
    </item>
  </channel>
</rss>

