<?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: Declaring variables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274958#M1019936</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;Type: It is used when userdefined object link with SAP &lt;/P&gt;&lt;P&gt;system data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like: It is when data object link with the other data &lt;/P&gt;&lt;P&gt;object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Aug 2008 06:01:27 GMT</pubDate>
    <dc:creator>former_member206439</dc:creator>
    <dc:date>2008-08-12T06:01:27Z</dc:date>
    <item>
      <title>Declaring variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274957#M1019935</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 declaring variables we make use of TYPES,DATA,LIKE,TYPE.Whats the purpose and difference between types and data and in the same way for like and type.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 05:54:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274957#M1019935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T05:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Declaring variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274958#M1019936</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;Type: It is used when userdefined object link with SAP &lt;/P&gt;&lt;P&gt;system data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like: It is when data object link with the other data &lt;/P&gt;&lt;P&gt;object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 06:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274958#M1019936</guid>
      <dc:creator>former_member206439</dc:creator>
      <dc:date>2008-08-12T06:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Declaring variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274959#M1019937</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;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fb2358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fb2358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES :&lt;/P&gt;&lt;P&gt;    BEGIN OF type_s_tab,&lt;/P&gt;&lt;P&gt;      a TYPE i,&lt;/P&gt;&lt;P&gt;      b TYPE i,&lt;/P&gt;&lt;P&gt;    END OF type_s_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES :&lt;/P&gt;&lt;P&gt;  t_c(50) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the above declaration does not have any memory assigned to it&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :&lt;/P&gt;&lt;P&gt;   itab TYPE&lt;/P&gt;&lt;P&gt;   STANDARD TABLE OF type_s_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :&lt;/P&gt;&lt;P&gt;  w_c TYPE t_c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The above declarations are objects of TYPE type_S_tab and t_c&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and memory is assigned to it&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :&lt;/P&gt;&lt;P&gt;  w_char LIKE w_c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above declaration of the object is referring to the type of w_c which is occupying 50 characters.&lt;/P&gt;&lt;P&gt;&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;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 06:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274959#M1019937</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-12T06:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: Declaring variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274960#M1019938</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;&lt;STRONG&gt;Types:&lt;/STRONG&gt; It is the statement used to define our own local data types in the program. Types won't occupy &lt;/P&gt;&lt;P&gt;             any memory at run time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data:&lt;/STRONG&gt;   It is the statement to declare a local variable in the program. Data objects occupy memory at &lt;/P&gt;&lt;P&gt;             runtime.&lt;/P&gt;&lt;P&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;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 06:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-variables/m-p/4274960#M1019938</guid>
      <dc:creator>former_member787646</dc:creator>
      <dc:date>2008-08-12T06:08:15Z</dc:date>
    </item>
  </channel>
</rss>

