<?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: Value from Structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753738#M903023</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prince,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures don't Store Values as they are not assigned Memory, so how can you get these Values when they does not Exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 May 2008 07:06:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-02T07:06:18Z</dc:date>
    <item>
      <title>Value from Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753737#M903022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to find &lt;STRONG&gt;values from Structure&lt;/STRONG&gt;??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 07:04:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753737#M903022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T07:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Value from Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753738#M903023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prince,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures don't Store Values as they are not assigned Memory, so how can you get these Values when they does not Exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 07:06:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753738#M903023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T07:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Value from Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753739#M903024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prince,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are populeted at run time and they dont store the values permanently.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Untill the specific Transaction is runned the values are stored and after that they get refreshed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to find the values of the fields used in the structure, first u need to know where these fields are used, that is in which table these fields are used. Then u can easily find the values of the fields u want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 07:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753739#M903024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T07:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Value from Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753740#M903025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi prince &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;well structure are wokarea and can hold the value only noe record and that is at the time of execution .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we  can also use these structure to define an internal table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now if u r asking how to get value for a field in a structure in program that is simple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose uhave a structure like this &lt;/P&gt;&lt;P&gt;fs_struct. &lt;/P&gt;&lt;P&gt;which have three field f1, f2, f3.&lt;/P&gt;&lt;P&gt; now to get the value of field use this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fs_struct-f1  for value of frist field&lt;/P&gt;&lt;P&gt;fs_struct-f2  for value of second field&lt;/P&gt;&lt;P&gt;fs_struct-f3  for value of third field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;snehi chouhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 07:38:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753740#M903025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T07:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Value from Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753741#M903026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prince,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 The structures dont have any memory allocated and hence they dont hold any values. The work areas and the internal tables which are defined using the structure holds the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sirisha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 08:51:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-structure/m-p/3753741#M903026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T08:51:29Z</dc:date>
    </item>
  </channel>
</rss>

