<?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 data and types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644876#M287017</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To construct a new structured data type struc_typein a program, you use several TYPES statements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES BEGIN OF struc_type. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;  {TYPES dtype ...} | {INCLUDE {TYPE|STRUCTURE} ...}. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;TYPES END OF struc_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax for directly declaring a variable as a structure is the same as you would use to define a structured data type using the TYPES statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF struc. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;  {DATA comp ...} | {INCLUDE {TYPE|STRUCTURE} ...}. &lt;/P&gt;&lt;P&gt;  .. &lt;/P&gt;&lt;P&gt;DATA END OF struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The individual components of a structure are addressed in the program with the structure component selector &lt;SPAN __jive_emoticon_name="minus"&gt;&lt;/SPAN&gt; between the structure name and component name as follows: struc_comp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at below link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3364358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3364358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Nov 2006 10:06:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-03T10:06:38Z</dc:date>
    <item>
      <title>difference between data and types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644872#M287013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear friends &lt;/P&gt;&lt;P&gt;       Its a very simple question i am confused with why we create structures with types where we can create structures with data as well :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types: begin of stru&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;end of stru.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: begin of stru&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;end of stru...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Naim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 09:58:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644872#M287013</guid>
      <dc:creator>naimkhans_babi</dc:creator>
      <dc:date>2006-11-03T09:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: difference between data and types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644873#M287014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for example ur requirement is create 10 tables with same structure then it is wise to create one type and refer to it n also if in future u want to change some thing with str u change the type and then every thing will change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 10:03:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644873#M287014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T10:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: difference between data and types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644874#M287015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. For practical purpose, we can directly create using data, and no need of using types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Types is generally used for oo programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 10:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644874#M287015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T10:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: difference between data and types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644875#M287016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi naim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this..&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2ff3358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb2ff3358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci1213769,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci1213769,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 10:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644875#M287016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T10:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: difference between data and types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644876#M287017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To construct a new structured data type struc_typein a program, you use several TYPES statements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES BEGIN OF struc_type. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;  {TYPES dtype ...} | {INCLUDE {TYPE|STRUCTURE} ...}. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;TYPES END OF struc_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax for directly declaring a variable as a structure is the same as you would use to define a structured data type using the TYPES statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF struc. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;  {DATA comp ...} | {INCLUDE {TYPE|STRUCTURE} ...}. &lt;/P&gt;&lt;P&gt;  .. &lt;/P&gt;&lt;P&gt;DATA END OF struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The individual components of a structure are addressed in the program with the structure component selector &lt;SPAN __jive_emoticon_name="minus"&gt;&lt;/SPAN&gt; between the structure name and component name as follows: struc_comp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at below link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3364358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3364358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 10:06:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-data-and-types/m-p/1644876#M287017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T10:06:38Z</dc:date>
    </item>
  </channel>
</rss>

