<?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: Reading value from Stack in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969471#M1800655</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nabheet and Byju ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working fine now , Thanks for help and sharing .&lt;/P&gt;&lt;H5 class="simple"&gt;&lt;/H5&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 29 Dec 2013 09:30:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-12-29T09:30:11Z</dc:date>
    <item>
      <title>Reading value from Stack</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969468#M1800652</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;I am doing enhancement and in debug mode i can see the values inside the table (SAPLFKB4)XXXXX[] .&lt;/P&gt;&lt;P&gt;I want to validate this (SAPLFKB4)XXXXX[] inside my program , when i write the code with the if condition , i am getting error as this is not declared .&lt;/P&gt;&lt;P&gt;So i came to know , i have to get this value by reading the stack ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please share your ideas how to read the stack and how to get the value inside my program ? and i have to declare the same table which has the values in DEBUG mode .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pradeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Dec 2013 08:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969468#M1800652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-29T08:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reading value from Stack</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969469#M1800653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;P&gt;You will have to declare field symbol type table of internal table. Then use assign statement assign (progaram name (itab)) to fs&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Dec 2013 08:55:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969469#M1800653</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2013-12-29T08:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Reading value from Stack</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969470#M1800654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp; Try the following.....&lt;/P&gt;&lt;P&gt;&amp;nbsp; It relates to obtaining the table contents using field-symbols.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; data&amp;nbsp; : name(100)&amp;nbsp;&amp;nbsp; type c.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; field-symbols:&amp;nbsp; &amp;lt;global&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type any table.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; name = '(SAPLFKB4)XXXXX[]'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; assign (name) to &amp;lt;global&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if sy-subrc = 0.&lt;/P&gt;&lt;P&gt; &lt;EM&gt; "&amp;nbsp; Pass values from &amp;lt;global&amp;gt; to your specific internal table Type&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Hope It Helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Dec 2013 09:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969470#M1800654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-29T09:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Reading value from Stack</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969471#M1800655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nabheet and Byju ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working fine now , Thanks for help and sharing .&lt;/P&gt;&lt;H5 class="simple"&gt;&lt;/H5&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Dec 2013 09:30:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-value-from-stack/m-p/9969471#M1800655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-29T09:30:11Z</dc:date>
    </item>
  </channel>
</rss>

