<?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 a screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160157#M456842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do i need to put any loop!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Apr 2007 13:39:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-23T13:39:26Z</dc:date>
    <item>
      <title>reading a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160154#M456839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi want to read a field from the screen sapmv45b where the table is fpla and the field is rfpln !!! can u plss tell me how to do it!!  n how caan i read all the values!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 13:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160154#M456839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T13:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: reading a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160155#M456840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you in some user exit of that program??&lt;/P&gt;&lt;P&gt;Or do you want that value in some other program?&lt;/P&gt;&lt;P&gt;If you want that value in some user exit of the program, then you can do this.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create field symbol&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  FIELD-SYMBOLS: &amp;lt;status&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign value of variable from calling prog to field symbol&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ASSIGN ('(SAPMV45B)FPLA-RFPLN') TO &amp;lt;status&amp;gt;.&lt;/P&gt;&lt;P&gt;Now, the Field symbol &amp;lt;status&amp;gt; will hold the value of that field.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 13:30:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160155#M456840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T13:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: reading a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160156#M456841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;U can read field RFPLN from table FPLA   as in the usual manner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  RFPLN  FROM FPLA INTO variable where condintion.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think u cant read a feild from the screen itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 13:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160156#M456841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T13:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: reading a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160157#M456842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do i need to put any loop!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 13:39:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160157#M456842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T13:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: reading a screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160158#M456843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;depending on whether you are in Process Before Output or in Process After Input, you can access directly the contents of a screen field or not. There is a way to avoid this problem: you should use function module DYNP_VALUES_READ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps. Best regards,&lt;/P&gt;&lt;P&gt;Alvaro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 13:41:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-a-screen/m-p/2160158#M456843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T13:41:01Z</dc:date>
    </item>
  </channel>
</rss>

