<?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 Module: Job Classification Start Date in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583502#M1273263</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And my_stell would be designated as what? I need the first begda where the job &lt;STRONG&gt;changed.&lt;/STRONG&gt; Thx,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 May 2009 15:46:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-13T15:46:48Z</dc:date>
    <item>
      <title>HR Module: Job Classification Start Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583500#M1273261</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;My situation is this: I need the start date (p0001-begda) that is tied to a job classification (job key) or p0001-stell. Each time an Action occurs, this creates an Org. Assignment record (0001). So I may have multiple records on different dates tied to the same job. What I need is the p0001-begda from the 1st time the employee entered the job (where the job key changed). Is there a simple piece of code that would accomplish this? Any help would be appreciated - thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2009 15:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583500#M1273261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-13T15:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: HR Module: Job Classification Start Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583501#M1273262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use ldb PNP.&lt;/P&gt;&lt;P&gt;tables: pernr.&lt;/P&gt;&lt;P&gt;infotypes: 0001.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;get pernr.&lt;/P&gt;&lt;P&gt;loop at p0001 where stell = my_stell.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;P0001 is sorted by BEGDA, overlapping records are not allowed, so you will get the first record.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2009 15:38:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583501#M1273262</guid>
      <dc:creator>former_member226519</dc:creator>
      <dc:date>2009-05-13T15:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: HR Module: Job Classification Start Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583502#M1273263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And my_stell would be designated as what? I need the first begda where the job &lt;STRONG&gt;changed.&lt;/STRONG&gt; Thx,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2009 15:46:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583502#M1273263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-13T15:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: HR Module: Job Classification Start Date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583503#M1273264</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;PRE&gt;&lt;CODE&gt;DATA I_COUNT TYPE I.
loop at p0001.

AT FIRST STELL.
" IF Count is 1 that is first job when the count is 2 the job is changed and exit the loop.
I_COUNT = I_COUNT + 1.
IF I_COUNT EQ 2.
EXIT.
ENDIF.
ENDAT.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2009 16:05:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-module-job-classification-start-date/m-p/5583503#M1273264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-13T16:05:55Z</dc:date>
    </item>
  </channel>
</rss>

