<?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 what is the difference between a field symbol and a reference. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-a-field-symbol-and-a-reference/m-p/6934171#M1486290</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi every one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  what is the difference between a field symbol and a reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;Moderator Message: Interview-type questions are not allowed.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kishan P on Dec 6, 2010 1:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 May 2010 08:51:18 GMT</pubDate>
    <dc:creator>former_member473486</dc:creator>
    <dc:date>2010-05-03T08:51:18Z</dc:date>
    <item>
      <title>what is the difference between a field symbol and a reference.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-a-field-symbol-and-a-reference/m-p/6934171#M1486290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi every one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  what is the difference between a field symbol and a reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;Moderator Message: Interview-type questions are not allowed.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kishan P on Dec 6, 2010 1:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 08:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-a-field-symbol-and-a-reference/m-p/6934171#M1486290</guid>
      <dc:creator>former_member473486</dc:creator>
      <dc:date>2010-05-03T08:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between a field symbol and a reference.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-a-field-symbol-and-a-reference/m-p/6934172#M1486291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data references are pointers to data objects. You can only de-reference a data reference using a special assignment to a field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field symbols are placeholders or symbolic names for other fields. They do not physically reserve space for a field, but point to its contents.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 10:47:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-a-field-symbol-and-a-reference/m-p/6934172#M1486291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-03T10:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between a field symbol and a reference.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-a-field-symbol-and-a-reference/m-p/6934173#M1486292</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;Sorry for my delayed response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will explain what you have asked with a example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) Declare a variable -&amp;gt; lv_var Type Integer Value 5. &lt;/P&gt;&lt;P&gt;This means a variable is created and it holds a value 5.&lt;/P&gt;&lt;P&gt;(2) Declare a variable -&amp;gt; lv_ref Type ref to Integer.&lt;/P&gt;&lt;P&gt;This is a not a normal variable rather a special variable bcoz it is capable of holding the address of another Integer type variable&lt;/P&gt;&lt;P&gt;(3)Get the refence of lv_var Into lv_ref.&lt;/P&gt;&lt;P&gt;Now lv_ref holds the memory address of lv_var&lt;/P&gt;&lt;P&gt;(4) Declare a field symbol and assign the refernce variable to that field symbol.&lt;/P&gt;&lt;P&gt;Why is this required ? Bcoz although you get the refence of the variable lv_var in lv_ref you can't directly get the value.&lt;/P&gt;&lt;P&gt;First you have to derefernec it using a field symbol and then access its value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So reference var. holds the memory address and field symbol is the dereference var and it points to only the content of the varable (in our case, 5)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;deb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Dec 2010 07:34:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-a-field-symbol-and-a-reference/m-p/6934173#M1486292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-06T07:34:17Z</dc:date>
    </item>
  </channel>
</rss>

