<?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: ABAP HR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347737#M518053</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;Its not true that LDBs do not filter records. If you go through the documentation, you will see that the LDB just checks if all the selection criterian is met for the PERNR in the date range. If a single record satisfy that condition, then it will be processed. You will have to then check if you need that record or REJECT the record.&lt;/P&gt;&lt;P&gt;You can use macros, loop endloop, Provide...Endprovide to evaluate.&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;Navneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jun 2007 19:55:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-18T19:55:56Z</dc:date>
    <item>
      <title>ABAP HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347734#M518050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;    I am using the LDB screen for my Z program. This screen has in selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pernr&lt;/P&gt;&lt;P&gt;employee status&lt;/P&gt;&lt;P&gt;personal area&lt;/P&gt;&lt;P&gt;personnel subarea&lt;/P&gt;&lt;P&gt;emp group&lt;/P&gt;&lt;P&gt;emp sub group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But its not evaluting employee status, per area, subarea.. . For example if i give emp status 3 its still showing me inactive employees too. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this will automatically evaluate the data given in the screen or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other code i need to inculde for evaluation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Admir.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 18:37:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347734#M518050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T18:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347735#M518051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LDB does not filter the data properly. I have faced this issue so many times. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After GET event put explicit check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK p0000-stat2  IN PNPSTAT2.&lt;/P&gt;&lt;P&gt;CHECK p0001-werks IN PNPWERKS.&lt;/P&gt;&lt;P&gt;CHECK p0001-btrtl    IN PNPBTRTL.&lt;/P&gt;&lt;P&gt;CHECK p0001-persg IN PNPPERSG.&lt;/P&gt;&lt;P&gt;CHECK p0001-persk IN PNPPERSK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put this below check after corresponding RP-PROVIDE-FROM-LAST of infotype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if its useful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 18:46:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347735#M518051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T18:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347736#M518052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;For example if i give emp status 3 its still showing me inactive employees too. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is the DATES that really drive the data selection from PNP/PNPCE.. In your scenario, the inactive emps would get picked up in the report, if they were active at some point during the selection preiod but are currently inactive. In such  cases, it is necessary to put in explicit checks in the GET PERNR event as mentioned in the previous response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 19:13:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347736#M518052</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-06-18T19:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347737#M518053</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;Its not true that LDBs do not filter records. If you go through the documentation, you will see that the LDB just checks if all the selection criterian is met for the PERNR in the date range. If a single record satisfy that condition, then it will be processed. You will have to then check if you need that record or REJECT the record.&lt;/P&gt;&lt;P&gt;You can use macros, loop endloop, Provide...Endprovide to evaluate.&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;Navneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 19:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347737#M518053</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T19:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347738#M518054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you send me any documentation or more details about the screen validation done by pnp screen or atleast one example code which does this validations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is , will , get pernr get only the record which satisfy all the conditions on the screen with out any code writen or i need to add code for validation before get pernr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 16:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347738#M518054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-20T16:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347739#M518055</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;If you run any program using PNP LDB, goto Person selection date or Other period and press F1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be clearly mentioned how data is selected using LDBs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In the date range, there needs to be valid record is PA0001. This is the first and the formost important condition.&lt;/P&gt;&lt;P&gt;2. In the date range, if any record for a PERNR satisfies the selection criteria, the pernr will be processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples are in the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Navneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:51:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/2347739#M518055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:51:47Z</dc:date>
    </item>
  </channel>
</rss>

