<?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: HR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571805#M859749</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your reply ...in the table pa2001 begda = 28.02.2006 endda = 03.03.2006, stdaz is 32 hours but my logic should ignore 28.02.2006 coz  period ive given is 01.03.2006 to 31.03.2006 and also the total hours i should have is onli 24 hours...plz advise..&lt;/P&gt;&lt;P&gt;regrds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Mar 2008 16:18:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-28T16:18:07Z</dc:date>
    <item>
      <title>HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571803#M859747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guyz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requirement is..my program should calculate the total number of hours the employee is absent with in the given period..&lt;/P&gt;&lt;P&gt;for eg : 1-03-2008 to 31-03-2008&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the table iam having begda = 28.02.2008 &lt;/P&gt;&lt;P&gt;                                 endda = 03.03.2008&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what program should do is calculate the hours the employee was absent with in the given time now it should calculate only three days ..the answer iam looking for is 24 hours coz 28.02.2008 is outta my range..can anybody help me out ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 16:10:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571803#M859747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T16:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571804#M859748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;go to the table pa2001 and  see the field STDAZ for abasent hours&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 16:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571804#M859748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T16:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571805#M859749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your reply ...in the table pa2001 begda = 28.02.2006 endda = 03.03.2006, stdaz is 32 hours but my logic should ignore 28.02.2006 coz  period ive given is 01.03.2006 to 31.03.2006 and also the total hours i should have is onli 24 hours...plz advise..&lt;/P&gt;&lt;P&gt;regrds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 16:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571805#M859749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T16:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571806#M859750</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; do like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_date = s_date-low -1.&lt;/P&gt;&lt;P&gt;select pernr&lt;/P&gt;&lt;P&gt;       begda&lt;/P&gt;&lt;P&gt;       endda&lt;/P&gt;&lt;P&gt;       STDAZ&lt;/P&gt;&lt;P&gt;       from pa2001&lt;/P&gt;&lt;P&gt;       into table itab&lt;/P&gt;&lt;P&gt;       where pernr in s_pernr&lt;/P&gt;&lt;P&gt;       and begda le s_date-high&lt;/P&gt;&lt;P&gt;       and endda ge s_date-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 16:27:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571806#M859750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T16:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: HR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571807#M859751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your reply....&lt;/P&gt;&lt;P&gt;s_low = 1.03.2006&lt;/P&gt;&lt;P&gt;s_high = 30.03.2006&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need the calculate the number of days the employee absent with in this specified dates &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if employee is absent from 23.02.2006 to 4.03.2006&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i should calculate only 4 days .....my answer shud be 4 X 8(no of working hours a day) = 32 ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz advise&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Mar 2008 16:34:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr/m-p/3571807#M859751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-28T16:34:50Z</dc:date>
    </item>
  </channel>
</rss>

