Employee Experience including previous employment experience

Hi Frnds,
I am implementing HR Personnel Administration module first time.
Here i want to calculate the total years of experience with previous employment experience also.
How to calculate this previous employment experience?
Can u pls tell me the steps?
thanks & regards,
Sridhar

Total Years of experience - Current employment experience = Previous year experirence
Find the current employment experience by knowing employee join date till the current date.might be some standard exit or variable coding will help you. You need to know either previous exp to calculate total or total exp  to calculate previous exp.

Similar Messages

  • EHP4: Education & Previous employment in ESS

    Hi,
    We have implemented EHP4, according to SAP their should be new iviews for Education & Previous employment in ESS. Anyone could share his/her experience implementing this new iviews?
    Looking forward to your reply.
    Regards,
    Onno

    I guess you are referring to [Talent Profile|http://help.sap.com/erp2005_ehp_04/helpdata/en/17/1b9db9546b42568eb69bef91f8cda7/content.htm]. If so, you will need to activate the TM Business Function on the ERP system and install the TM Specialist Business Package on the Enterprise Portal.
    ~Suresh

  • ESS - Previous Employment Screen

    Dear Experts,
    In ESS, if we view our previous experience details in previous employment
    screen the name of the previous organization is not appearing fully. The
    maximum characters is restricted to 20. How to address his issue?
    Have a nice day.
    Thanks & Regards,
    S.Sriram
    *Sriram , i have moved your thread from SAP HCM to ESS Forum to have better results "
    Edited by: Sikindar on Dec 16, 2011 4:34 PM

    which screen is this.? Is it ITS based, Please clarify
    Edited by: Siddharth Rajora on Dec 16, 2011 9:27 PM

  • Education & Previous Employment in Adhoc Query

    Dear Experts,
    Can you tell us how to include education & previous employment (only the recent employer name) in adhoc query report in recruitment module.
    Request if anyone can help me with this.
    Have a nice day.
    Regards,
    S.Sriram

    did you build the infoset so that adhoc query can be built?
    which report you are referring to?

  • BAPI to get Previous Employment info

    Hi,
    does anybody know a BAPI call to get previous Employment informations of an employee?
    e.g.
    Employer, City, Job type, work contract?
    regards,
    Andre

    hi,
    check the below link i think u can find the bapi required for u r application
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    Try Bapi BAPI_EMPLOYEE_GETDATA. The table in which this data is stored are named PA****. Replace the **** with number of the infotype. Thus infotype 0001, organizational assignment, can be found in table PA0001.
    Good luck!
    Regards,
    Naveen

  • PY-ID Previous employment details

    Hi, I read from SAP Help that the system reads PTKP details from infotype 0694 only if we have set the feature IDPTK.
    Can someone advise what should be the entries to set in the feature IDPTK?
    It was also mentioned in SAP Help that "If an employee joins the company in the middle of the tax year, use Mid year hiring action." What is a mid year hiring action? We have only 1 "Hiring" action that we are using to hire staff who joins anytime within the year.
    Thanks.
    Edited by: Camie Lee on Dec 31, 2008 2:59 AM

    Re: Previous Employment data

  • Previous Employment data

    Hi,
    Is there any application in the ESS for the Previous Employment data(info type 23) ?
    Thanks,
    Anumit

    Hi,
    1st you need to RUN any transaction in SAP ...say for e.g SE11 . Once its open SE11 then put "/NPZ28" it will open "ESS Previous Employers".
    You can not run NPZ28 directly because "The transaction that you wish to start can only be started in the Web browser. It does not make sense to start the transaction from the Easy Access Menu because the transaction was specifically designed to be used in the browser."
    Rest of the settings will be correct which has suggested by Barin .

  • Previous Employment Details in ESS

    Hi Experts,
    We are implementing ESS and MSS for our client. The client wants to see the Previous employment details that is maintained in Infotype 0023 in ESS.
    Can any body tell me what needs to be done with respect to the configuration from ESS point of view.
    or is there any other way to achieve this.
    Regards,
    Smitha

    Re: Previous Employment data

  • Previous Employment Form - Subtype Field

    Hi,
    I am trying to find the lookup that populates the sub types field in the previous employment form but it has me stumped. Can anyone please let me know.
    Regards,
    Vinayaka

    Hi Vinayaka,
    Lookup_types for :
    Type - PREV_EMP_TYPE
    SubType - PREV_EMP_SUBTYPE
    Hope that helps.
    Cheers,
    Vignesh

  • Previous Employment in SSHR

    Is there any function available for Previous Employment in SSHR.
    We are getting in Core HRMS which in not accessible in SSHR.
    This is urgent to us , please let us know.

    Hi,
    As far as I know, there is no function in self service where you can enter previous employment infomation. It is however, available in iRec, where you can enter it. I am not sure if the personal information function, displays the stored information (u might want to check this). So, if you are not using iRec, then you will have to enter it through PUI.
    Regards,
    Vikash

  • User is unable to appoint an employee from the previous tax year

    Hi Experts,
    Can anyone resolve this issue please...
    User is unable to appoint an employee from the previous tax year ( 01/12/2010), Appointment date 01/12/2010 for an employee Please asist...
    Regards
    Sav

    OK .... last user insalled software that was not owned by company. Software removed bug solved.

  • How to send a group text without included previous text messages from an individual?

    How to do a group message without including previous text messages from a person? When I type a name it includes our past texts messages.

    I think I found an answer to the question about texting to a group of people.  I was wondering also, so I did a search.  This is what I found.  I hope it helps you guys
    Click on the link http://www.palm.com/us/support/treo/treo680cingular/guide/Sec04Emailvj.html
    Samplegirl
    Post relates to: Centro (AT&T)

  • How to Include previous Month/Year in Transformation

    Hi,
    From Source System (DB Table;DB Connect)
    Location_ID,EMP_ID,AMOUNT
    There is no date field avaliable in the source system.
    The Data load to BW will me Monthly frequency...I,e:Data will be loaded once in a Months on 1st of every month.
    My requirment is to Include a date field in BW transformations which input previous month/year data for every record
    How can i do that and wether do i need to write a start or field routine in transformations
    Code please
    Thanks

    Hi Pal,
    You could use the following code to achieve this:
    DATA: v_calmonth(6) TYPE c,
          v_month(2) TYPE c,
          v_year(4) TYPE c.
    v_month = sy-datum+4(2).
    v_year = sy-datum+0(4).
    IF v_month = 1.
      v_year = v_year - 1.
    ENDIF.
    IF v_month = 1.
      v_month = 12.
    ELSE.
      v_month = v_month - 1.
    ENDIF.
    CONCATENATE v_year v_month INTO result.
    Hope this helps.
    Thanks and Regards
    Subray Hegde

  • How can I stop Exchange from including previous text in message replies?

    This is an issue because many people use "reply to" from their iPhone and the previous messages are included at the bottom of the message. But they are not aware of the earlier messages. Now and again, especially when we have several ".cc" persons, a confidential discussion is messaged out to people who do not need to have it. In Outlook Exchange on my PC, I have this turned off. This means that when I want to include the original message, I select and copy it, then paste it at the bottom of the new message. That is much more secure.
    In Nokia Symbian it was possible to leave out the original message. Can the iPhone do this?
    Many Thanks for your help.

    There is no setting for this with the iPhone's Mail app - to include or not include the recieved message when replying to the message. The recieved message is included by default.

  • Iphoto 6 shows only the last imported photos, doesn't include previous pics

    History- when I first got the computer I didn't understand how iPhoto accessed its photos, and deleted some of the content from the iPhoto folder directly - since then every once in a while I get a window that asks me to rebuild my cache - the apple employees at the genius bar told me that if I rebuilt my cache, that the thumbnails wouldn't match, and I could possibly loose photos. So I have not updated the cache in 4 years, and have not had any problems.
    Recently, my computer was slowing down, so I took it to the apple store and had them help me remove everything from the computer and placed onto an external drive, and then wiped the computer by reinstalling the system. Since then I have run iPhoto through my external hd, and did not replace ANYTHING onto the computer - everything is on the external hd. had no problems for a year. After this last upload(about a week ago) to iPhoto I noticed that it caused all previous photos (10,000+) to disappear - the only ones that were in the library were the ones I just uploaded.
    I then returned to the apple store and they used the option "create new library" to find the existing library.. but the computer was not even allowing the library file to be clicked on. So, for some reason the old photos are gone, and it wont allow the existing library to be chosen - yet there are still photos that it is accessing from that same library.
    Now when I open iPhoto, I get a message that says "In this version of iPhoto, the thumbnails have been improved. Upgrading the thumbnails will take a while, depending on the number of photos in your library. Do you want to upgrade your thumbnails now?"
    I am afraid that if I do this, it will cause the same problem of confusing the program, and not having the thumbnails match the iPhoto files, possibly causing me to loose photos.
    Is this message the reason why I can't access the old photos in the library? How would you suggest I go about correcting this problem in a way that I don't loose photos?

    I didn't understand how iPhoto accessed its photos, and deleted some of the content from the iPhoto folder directly
    This corrupted your library - b continuing to use a corrupted library you have continued the problem and it sounds like it finally has come in to bite you
    You can try using iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/ - to rebuild your library - this creates a totally new library so if the results are not acceptable you can go back to what you have
    other than that you have no choice I am aware of except to start over - drag the iPhoto library to the desktop and launch iPhoto and create a new library - open the old corrupt iPhoto library and open the originals folder and drag each folder in it onto iPhoto recreating your rolls but losing all edits and other changes
    LN

Maybe you are looking for

  • How do I keep my manual reordering of photos when I duplicate albums?

    Hello.  I have a large batch of photos from a 12 day, family trip.  Over 4000 pictures coming in from various relatives cameras, and my goal is to whittle this down and put together a nice slide show AND a cd that has the best pics in a chronological

  • How to add OS command in SM69?

    Hi, How to pass command lines in transaction SM69? Thanks.

  • Share Data between Pro and Designer Form

    Good evening, Old Form: I recently inherited an adobe pro form created a few years ago. The naming conventions are horrible, and they refuse to replace the form to spit out an xml file. But they want the data to fill into an access database. New Form

  • Need Hex Encoder Class and Package Name

    Hi, I have a requirement in which I need to convert an xml (input) into a Hex format (output). I know that there is a class called as BASE64Encoder when you want to encode a data into base64Binary format and this one is present in the sun.misc.BASE64

  • Creating a better WiFi signal in basement

    Can I add an Airport Express in the basement to an Airport Extreme located on the main floor to create a better WiFi signal in the basement?  Thanks!