<?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: What is the difference between initial and bound ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350130#M803563</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , Ponna , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see , so in most cases , we should use bound to see if the reference to the data or object is legal , am I right ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Feb 2008 09:56:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-11T09:56:06Z</dc:date>
    <item>
      <title>What is the difference between initial and bound ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350127#M803560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some time we use &lt;/P&gt;&lt;P&gt;if .. is initial ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some time we use &lt;/P&gt;&lt;P&gt;if ... is not bound . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me the difference of the 2 operator ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards ,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 13:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350127#M803560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T13:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between initial and bound ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350128#M803561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF .. is initial ....  checks if a variable is initial or not ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Bound&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f IS [NOT] BOUND determines if the reference variable f contains a valid reference. f must be a data or an object reference variable. If you specify a function method call instead of f, the method must have a return value that is typed accordingly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logical expression is true for a data reference if the reference can be dereferenced. The logical expression is true for an object reference if the reference points to an objct. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logical expression is always false if f contains the zero reference. However, there might be data references where f indeed does not contain the zero reference but where the reference contained is invalid because the object no longer exists. For example, a global data reference may point to a local data object of a procedure which is deleted after the procedure is exited. In this case, the reference is no longer bound to the destination, and the logical expression is also false.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 13:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350128#M803561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T13:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between initial and bound ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350129#M803562</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;If not itab [ ]  is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using above you will come to know whether itab is filled with the values or not, if it is initial then itab doesnot contain any values in it, or if it is not initial then itab is filled with some values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f IS [NOT] BOUND determines if the reference variable f contains a valid reference. f must be a data or an object reference variable. If you specify a function method call instead of f, the method must have a return value that is typed accordingly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logical expression is true for a data reference if the reference can be dereferenced. The logical expression is true for an object reference if the reference points to an objct. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logical expression is always false if f contains the zero reference. However, there might be data references where f indeed does not contain the zero reference but where the reference contained is invalid because the object no longer exists. For example, a global data reference may point to a local data object of a procedure which is deleted after the procedure is exited. In this case, the reference is no longer bound to the destination, and the logical expression is also false. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;data DREF type ref to DATA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform: TEST, &lt;/P&gt;&lt;P&gt;           CREATE, &lt;/P&gt;&lt;P&gt;           TEST. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form CREATE. &lt;/P&gt;&lt;P&gt;  data INT type I. &lt;/P&gt;&lt;P&gt;  get reference of INT into DREF. &lt;/P&gt;&lt;P&gt;  perform TEST. &lt;/P&gt;&lt;P&gt;endform. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form TEST. &lt;/P&gt;&lt;P&gt;  if DREF is bound. &lt;/P&gt;&lt;P&gt;    write / 'Bound'. &lt;/P&gt;&lt;P&gt;  else. &lt;/P&gt;&lt;P&gt;    write / 'Unbound'. &lt;/P&gt;&lt;P&gt;  endif. &lt;/P&gt;&lt;P&gt;endform. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logical expression is only true in the subroutine CREATE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 13:57:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350129#M803562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T13:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between initial and bound ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350130#M803563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , Ponna , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see , so in most cases , we should use bound to see if the reference to the data or object is legal , am I right ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 09:56:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-initial-and-bound/m-p/3350130#M803563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T09:56:06Z</dc:date>
    </item>
  </channel>
</rss>

