<?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: provide help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124180#M445676</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. You can restrict PNPPERSG initializing the selection screen or before GET PERNR event (depends on your requirements).&lt;/P&gt;&lt;P&gt;2. You can get use of global PNP select-option table PNPINDEX populating it only with rerstricted set of PERNRs. You should do it before GET PERNR event either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Apr 2007 15:29:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-19T15:29:17Z</dc:date>
    <item>
      <title>provide help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124177#M445673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallow I use the logical data base pnpce and their I use provide_form_last&lt;/P&gt;&lt;P&gt;My problem is I  wont all the data where &lt;/P&gt;&lt;P&gt;Persg = 6 and 7 and 8.&lt;/P&gt;&lt;P&gt;Now I doing delete after that but it take a lot performance to &lt;/P&gt;&lt;P&gt;take the data before&lt;/P&gt;&lt;P&gt;How can I solved it  ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe in where but how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rp_provide_from_last t_0001 ' '  sy-datum sy-datum.       "pa0001&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; pn-begda pn-endda.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  wa_person_tab-stell = t_0001-stell.&lt;/P&gt;&lt;P&gt;  wa_person_tab-werks = t_0001-werks.&lt;/P&gt;&lt;P&gt;  wa_person_tab-persg = t_0001-persg.&lt;/P&gt;&lt;P&gt;  wa_person_tab-persk = t_0001-persk.&lt;/P&gt;&lt;P&gt;  wa_person_tab-orgeh = t_0001-orgeh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE person_tab WHERE ( persg &amp;lt;&amp;gt; '6' AND persg &amp;lt;&amp;gt; '7' AND persg &amp;lt;&amp;gt; '8' ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:02:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124177#M445673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: provide help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124178#M445674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post in English?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124178#M445674</guid>
      <dc:creator>Sougata</dc:creator>
      <dc:date>2007-04-19T13:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: provide help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124179#M445675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there.  Instead of writing every person and then going in at the end to delete the ones without the persg values that you want, you could simply reject the ones who don't have the right values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rp_provide_from_last pa0001 space sy-datum sy-datum.&lt;/P&gt;&lt;P&gt;IF pa0001-persg = 6 or pa0001-persg = 7 or pa0001-persg = 8.&lt;/P&gt;&lt;P&gt;wa_person_tab-stell = pa0001-stell.&lt;/P&gt;&lt;P&gt;wa_person_tab-werks = pa0001-werks.&lt;/P&gt;&lt;P&gt;wa_person_tab-persg = pa0001-persg.&lt;/P&gt;&lt;P&gt;wa_person_tab-orgeh = pa0001-orgeh.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;REJECT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; - April King&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124179#M445675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: provide help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124180#M445676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. You can restrict PNPPERSG initializing the selection screen or before GET PERNR event (depends on your requirements).&lt;/P&gt;&lt;P&gt;2. You can get use of global PNP select-option table PNPINDEX populating it only with rerstricted set of PERNRs. You should do it before GET PERNR event either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 15:29:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/provide-help/m-p/2124180#M445676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T15:29:17Z</dc:date>
    </item>
  </channel>
</rss>

