<?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: No page down function code for BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622639#M25982</link>
    <description>&lt;P&gt;Using your BDC can you delete a line that you &lt;EM&gt;can&lt;/EM&gt; see? I.e. where you don't need to scroll down?&lt;/P&gt;</description>
    <pubDate>Wed, 20 Jun 2018 09:16:17 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2018-06-20T09:16:17Z</dc:date>
    <item>
      <title>No page down function code for BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622638#M25981</link>
      <description>&lt;P&gt;This issue has to do with pro grammatically removing an equipment record from the object list of the maintenance plan item.&lt;/P&gt;
  &lt;P&gt;I have a BDC I created from a recording to remove a record from the object list of the maintenance plan item in IP05. The problem is that there is no "page down" function code implemented in this screen.&lt;/P&gt;
  &lt;P&gt;I have tried a number of different routes. The function modules for this functionality are all working with the buffer and not the database (that I can see) and when I try to page down in a BDC to reach an equipment it does not work. I have tried: '=P', '=PEND', '=P+', '+P=' and none of them worked.&lt;/P&gt;
  &lt;P&gt;If anyone could suggest a BDC method to reach the correct record (multiple pages down) that would be really appreciated.&lt;/P&gt;
  &lt;P&gt;If you know of an SAP function or BAPI that does this that would be even more exciting.&lt;/P&gt;
  &lt;P&gt;Thanks in advance for any constructive comments.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/158871-ip05-no-page-down-button.png" /&gt;&lt;/P&gt;
  &lt;P&gt;When it comes to adding new records this screen has an "New Entries" button which makes it easy to add new records&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 02:16:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622638#M25981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-06-20T02:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: No page down function code for BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622639#M25982</link>
      <description>&lt;P&gt;Using your BDC can you delete a line that you &lt;EM&gt;can&lt;/EM&gt; see? I.e. where you don't need to scroll down?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 09:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622639#M25982</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-06-20T09:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: No page down function code for BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622640#M25983</link>
      <description>&lt;P&gt;Did you &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;UL&gt; 
   &lt;LI&gt;Perform the recording with box "Simulate Background Mode" checked&lt;/LI&gt; 
   &lt;LI&gt;Analyze the PAI of the dynpro&lt;/LI&gt; 
   &lt;LI&gt;Look for BAPIs&lt;/LI&gt; 
   &lt;LI&gt;Look for other APIs (e.g. such as function group MPLAN_API)&lt;/LI&gt; 
  &lt;/UL&gt;</description>
      <pubDate>Wed, 20 Jun 2018 12:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622640#M25983</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-06-20T12:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: No page down function code for BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622641#M25984</link>
      <description>&lt;P&gt;Hi Raymond,&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;A colleague found the function below. I tested it and it works. I would have seen this when I was searching but I must have disregarded it as it is an "ISU" function. But it works and does what we need it to do. It is not a satisfactory solution but it will have to do for now.&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Thanks for your input. Regards, Martin.&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;    CALL FUNCTION 'ISU_DB_OBJK_UPDATE'
      EXPORTING
        x_objk     = ls_objk
        x_upd_mode = 'D'.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Jun 2018 00:29:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-page-down-function-code-for-bdc/m-p/622641#M25984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-06-21T00:29:44Z</dc:date>
    </item>
  </channel>
</rss>

