<?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/3283101#M785201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Prasun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the correspondning Infotype table for the require subtype. If no entry found, process the require functionality.&lt;/P&gt;&lt;P&gt;Use HR_READ_INFOTYPE function to read the infotype data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Piyush&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points, if useull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Jan 2008 11:49:04 GMT</pubDate>
    <dc:creator>piyush_mathur</dc:creator>
    <dc:date>2008-01-16T11:49:04Z</dc:date>
    <item>
      <title>abap hr</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/3283100#M785200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;I have a requirement in the project in which i have to make an enhancement in the report:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : i am not using logical data base pnp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ensure all current workers (EE groups 1, 2, and &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; have their IT 105 subtypes 0001, 9998, and 0010 fields populated. If subtype 9998 or 0010 is missing, log an error, email to UAS (adbe20ua@adobe.com) and perform no further action; if subtype 0001 is missing, create it using the same value, start date, and end date as in subtype 9998.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am new to Hr.can any onekindlyhelp me regarding this.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Prasun Rudra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 11:43:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/3283100#M785200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-16T11:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: abap hr</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/3283101#M785201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Prasun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the correspondning Infotype table for the require subtype. If no entry found, process the require functionality.&lt;/P&gt;&lt;P&gt;Use HR_READ_INFOTYPE function to read the infotype data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Piyush&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points, if useull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 11:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/3283101#M785201</guid>
      <dc:creator>piyush_mathur</dc:creator>
      <dc:date>2008-01-16T11:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: abap hr</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/3283102#M785202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...&lt;/P&gt;&lt;P&gt;proceed in below way........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : wa like pa0105.&lt;/P&gt;&lt;P&gt;*--declare all internal tables....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select pernr persg from pa0001 into table itab where pernr in s_pernr and begda le sy-datum and endda ge sy-datum.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;itab1[] = itab[].&lt;/P&gt;&lt;P&gt;delete itab1 where persg ne 1 or persg ne 2 or persg ne 8.&lt;/P&gt;&lt;P&gt;sort itab1 by pernr endda descending.&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from itab1 comparing pernr.&lt;/P&gt;&lt;P&gt;select * from pa0105 into table itab3 for all entries in itab1 where pernr = itab1-pernr and subty = '0001' or subty = '9998' or subty = '0010'.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;*--mail error message...&lt;/P&gt;&lt;P&gt;stop.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;read table itab3 with key pernr = itab1-pernr&lt;/P&gt;&lt;P&gt;                                     subty = '9998'.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;*--mail error message &lt;/P&gt;&lt;P&gt;continue.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table itab3 with key pernr = itab1-pernr&lt;/P&gt;&lt;P&gt;                                     subty = '0010'.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;*--mail&lt;/P&gt;&lt;P&gt;continue.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table itab3 with key pernr = itab1-pernr&lt;/P&gt;&lt;P&gt;                                     subty = '0001'.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;clear wa.&lt;/P&gt;&lt;P&gt;wa-pernr = itab1-pernr.&lt;/P&gt;&lt;P&gt;wa-subty = '0010'.&lt;/P&gt;&lt;P&gt;*--populate all fields...&lt;/P&gt;&lt;P&gt;insert pa0105 from wa.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&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;refer this...&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/email/emailhome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/email/emailhome.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for sending mail.....&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vasu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 12:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-hr/m-p/3283102#M785202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-16T12:00:20Z</dc:date>
    </item>
  </channel>
</rss>

