<?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: How to call program variables without passing as parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989549#M953150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Max.&lt;/P&gt;&lt;P&gt;It is a very helpful reply .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be more helpful to me if u able to send the link of that blog also.&lt;/P&gt;&lt;P&gt;I want to read once more that blog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once more Thanks to you to give me reply and good answer.&lt;/P&gt;&lt;P&gt;Max can i have your email id ,i have so many querries  to ask u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jun 2008 02:26:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-12T02:26:24Z</dc:date>
    <item>
      <title>How to call program variables without passing as parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989547#M953148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Respected Members,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had read one blog some days back base on the above topic that is system variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that it is clearly mention how you can play with system variables but nw i am unable to find that blog.&lt;/P&gt;&lt;P&gt;In that it has mention u can view it through call stack of debugging mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF somebody please forward me the link of that blog then it will grateful to me.&lt;/P&gt;&lt;P&gt;THanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2008 15:34:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989547#M953148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-11T15:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to call program variables without passing as parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989548#M953149</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;While debugging If the program is loaded in memory, it can read a variable of the program writing in the prompt of debug:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&amp;lt;PROGRAM NAM&amp;gt;)&amp;lt;VARIABLE NAME&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if it needs to do in abap code it has to use the field-symbols:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: VARIABLE_NAME(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;FS_FIELD&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VARIABLE_NAME = '(SAPMV45A)VBAK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (VARIABLE_NAME) TO &amp;lt;FS_FIELD&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now &amp;lt;FS_FIELD&amp;gt; is a pointer linked to the variable VBAK of program SAPMV45A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to see an internal table, so not a flat variable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;ITAB&amp;gt; TYPE TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VARIABLE_NAME = '(SAPMV45A)XVBAP[]'.&lt;/P&gt;&lt;P&gt;ASSIGN (VARIABLE_NAME) TO &amp;lt;ITAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2008 15:50:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989548#M953149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-11T15:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to call program variables without passing as parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989549#M953150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Max.&lt;/P&gt;&lt;P&gt;It is a very helpful reply .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be more helpful to me if u able to send the link of that blog also.&lt;/P&gt;&lt;P&gt;I want to read once more that blog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once more Thanks to you to give me reply and good answer.&lt;/P&gt;&lt;P&gt;Max can i have your email id ,i have so many querries  to ask u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 02:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989549#M953150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T02:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to call program variables without passing as parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989550#M953151</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;U can find it in my user profile&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 16:35:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-program-variables-without-passing-as-parameters/m-p/3989550#M953151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T16:35:20Z</dc:date>
    </item>
  </channel>
</rss>

