<?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: RF transaction: Sample code for page down &amp; page down in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928030#M689885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI ,&lt;/P&gt;&lt;P&gt;      Here is the sample code .  &lt;/P&gt;&lt;P&gt; WHEN c_down.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Display next record&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;where v_lines is total no of records .&lt;/P&gt;&lt;P&gt;      IF v_currec LT v_lines.&lt;/P&gt;&lt;P&gt;        CLEAR s_lqua_makt.&lt;/P&gt;&lt;P&gt;        v_currec = v_currec + 1.&lt;/P&gt;&lt;P&gt;        READ TABLE t_lqua_makt INDEX v_currec INTO s_lqua_makt.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN c_up.&lt;/P&gt;&lt;P&gt;      IF v_currec GT 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Display previous record&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        CLEAR s_lqua_makt.&lt;/P&gt;&lt;P&gt;        IF v_currec &amp;lt;&amp;gt; 1.&lt;/P&gt;&lt;P&gt;          v_currec = v_currec - 1.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        READ TABLE t_lqua_makt INDEX v_currec INTO s_lqua_makt.&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;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Oct 2007 06:17:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-16T06:17:44Z</dc:date>
    <item>
      <title>RF transaction: Sample code for page down &amp; page down</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928028#M689883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAP Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create an RF Transaction.  Considering that the screen should sport a certain limited size, I would need to implement a "page down" &amp;amp; "page up". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this light, I would like to request for a sample code for "page down" and "page up".  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be given accordingly. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards.&lt;/P&gt;&lt;P&gt;Brando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 05:55:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928028#M689883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T05:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: RF transaction: Sample code for page down &amp; page down</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928029#M689884</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;&lt;/P&gt;&lt;P&gt;use sample-prg. DEMO_DYNPRO_TABLE_CONTROL_1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 06:15:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928029#M689884</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2007-10-16T06:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: RF transaction: Sample code for page down &amp; page down</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928030#M689885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI ,&lt;/P&gt;&lt;P&gt;      Here is the sample code .  &lt;/P&gt;&lt;P&gt; WHEN c_down.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Display next record&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;where v_lines is total no of records .&lt;/P&gt;&lt;P&gt;      IF v_currec LT v_lines.&lt;/P&gt;&lt;P&gt;        CLEAR s_lqua_makt.&lt;/P&gt;&lt;P&gt;        v_currec = v_currec + 1.&lt;/P&gt;&lt;P&gt;        READ TABLE t_lqua_makt INDEX v_currec INTO s_lqua_makt.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN c_up.&lt;/P&gt;&lt;P&gt;      IF v_currec GT 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Display previous record&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        CLEAR s_lqua_makt.&lt;/P&gt;&lt;P&gt;        IF v_currec &amp;lt;&amp;gt; 1.&lt;/P&gt;&lt;P&gt;          v_currec = v_currec - 1.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        READ TABLE t_lqua_makt INDEX v_currec INTO s_lqua_makt.&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;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 06:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928030#M689885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T06:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: RF transaction: Sample code for page down &amp; page down</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928031#M689886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your quick answers.  Points have been given.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 06:21:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928031#M689886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T06:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: RF transaction: Sample code for page down &amp; page down</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928032#M689887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anyone with more sample codes? please feel free to post. thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 11:19:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-transaction-sample-code-for-page-down-page-down/m-p/2928032#M689887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T11:19:33Z</dc:date>
    </item>
  </channel>
</rss>

