<?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: FM to read buffer data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110612#M1904051</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anoop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you already cleared that wa, where is buffer data come from. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So any concern if you declare a temp variable to store wa-field1? i prefer to use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Archer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 May 2015 11:23:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-05-28T11:23:24Z</dc:date>
    <item>
      <title>FM to read buffer data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110609#M1904048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my requirement is to read a data of a screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear command has been used on a work area like 'clear: wa'. and just next to this line i wanna read the data of &lt;SPAN style="font-size: 13.3333330154419px;"&gt;wa-field1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; solution&lt;/P&gt;&lt;P&gt;1. can declare a temp variable like &lt;SPAN style="font-size: 13.3333330154419px;"&gt;wa-field1 and assign the &lt;SPAN style="font-size: 13.3333330154419px;"&gt;wa-field1 data to this temp&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; expoert / import&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; parameter id---can't use hence &lt;SPAN style="font-size: 13.3333330154419px;"&gt;wa-field1 is a z field&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly suggest for the same...looking for a FM to read buffer data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Anoop &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 10:36:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110609#M1904048</guid>
      <dc:creator>former_member462254</dc:creator>
      <dc:date>2015-05-28T10:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: FM to read buffer data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110610#M1904049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if it is screen field data then go for assign field symbol&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:lc_constansts type c--- (prgname)filedname&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exampl;lv_filds type c30(sapmv45a)vbap-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fieldsymbols:&amp;lt;lfs_vbeln&amp;gt; type vbeln.&lt;/P&gt;&lt;P&gt;to store the value so define like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lw_field type vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign&amp;nbsp; (lv_filds) to &amp;lt;lfs_vbeln&amp;gt;&lt;/P&gt;&lt;P&gt;if sy-subrc is initial.&lt;/P&gt;&lt;P&gt;lw_field = &amp;lt;lfs_vbeln&amp;gt;.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for clear example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; constants:lc_xvbrp&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TYPE char20 &lt;SPAN class="L0S52"&gt;VALUE &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'(SAPMV60A)XVBRP' &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;FIELD-SYMBOLS &lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;&amp;lt;lfs_var&amp;gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;any &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;ASSIGN &lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;lc_xvbrp&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&amp;lt;lfs_var1&amp;gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;IF &amp;lt;lfs_var1&amp;gt; &lt;SPAN class="L0S52"&gt;is &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ASSIGNED&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;. &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;"in case of normal call&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; lw_xvbrp &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&amp;lt;lfs_var1&amp;gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; UNASSIGN &amp;lt;lfs_var1&amp;gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;endif.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 11:16:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110610#M1904049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-05-28T11:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: FM to read buffer data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110611#M1904050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anoop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FM DYNP_VALUES_READ to read the screen values in buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanmay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 11:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110611#M1904050</guid>
      <dc:creator>TanmayVerma</dc:creator>
      <dc:date>2015-05-28T11:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: FM to read buffer data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110612#M1904051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anoop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you already cleared that wa, where is buffer data come from. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So any concern if you declare a temp variable to store wa-field1? i prefer to use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Archer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2015 11:23:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-to-read-buffer-data/m-p/11110612#M1904051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-05-28T11:23:24Z</dc:date>
    </item>
  </channel>
</rss>

