Changes in Personnel information.

Dear consultants,
We change Personnel Info of an Employee such as Title (Miss to Mrs), Marital Status (Single > Married > Divorced or Widow.) Name after marriage, Date of Marriage etc. When we save the record, system only saves the new record but the privious information is wiped out. How can I see the track of previous changes in this information?
Is all the Information from the Date of Joining / Birth of the employee is retained or deleted or delimited?
Regards
Bindumadhav
9869028264

i think this is due to Time consraint  V_T582A
if an employee is married we say Marrried this will happen only once in life so TC  1
when i was in project my manager asked how man G\F do u have i said TC  01 is applicable to Family Members and life partner  (just Kidding )
But wht is the procedure followed when there is an option to marry more than once as Personal data is TC 01 and is defaulted
any Clues
Edited by: Sikindar on Apr 7, 2009 1:06 PM

Similar Messages

  • Error in Personnel Information

    Dear Friends
    I'm getting a issue in production system where all users are unable to access their Personnel Information screens. Earlier the Issue was
    ST22 Dump:
    "ASSERTION_FAILED" " "                                                                        |
    |    "CL_HRPA_PERNR_INFTY_XSS=======CP" or "CL_HRPA_PERNR_INFTY_XSS=======CM00Q"                   |
    |    "CHECK_USECASE_WITH_CONSTRAINT"                                               
    Program:
    V_T7XSSPERSUBTYP:
    Earlier the config was:
    later changed to
    now I'm able to access the Personnel Information screens but when I try to edit them then I'm getting the following error
    HRPAD Config:
    HRESS_CC_PER_CONFIG:
    HRESS_CC_PER_OVP:
    ST22 DUMP:
    ERROR ANALYSIS:
    An exception occurred which is explained in detail below.
    The exception, which is assigned to class 'CX_CRM_GENIL_MODEL_ERROR2', was not
      caught and
    therefore caused a runtime error.
    The reason for the exception is:
    'IT0002_46' is not a subobject of 'IT0002_NN'.
    "UNCAUGHT_EXCEPTION" "CX_CRM_GENIL_MODEL_ERROR2"
    "CL_CRM_GENIL_CONTAINER_OBJECT=CP" or "CL_CRM_GENIL_CONTAINER_OBJECT=CM003"
    "IF_GENIL_CONTAINER_OBJECT~ADD_CHILD"
    PROGRAM:
    method IF_GENIL_CONTAINER_OBJECT~ADD_CHILD .
       data: LS_CONT_OBJ        type CRMT_GENIL_CONT_OBJ_HDR,
             LS_RELATION        type CRMT_GENIL_CONT_RELATION,
             LV_CHILD_DATA_REF  type ref to CRMT_GENIL_CONT_OBJ_HDR,
             LV_CHILD           type ref to CL_CRM_GENIL_CONTAINER_OBJECT,
             LV_CHILD_ID        type CRMT_GENIL_OBJECT_ID,
             LV_TYPE_DESCR      type ref to CL_ABAP_TYPEDESCR,
             LV_TEXT            type CHAR255,
             LV_NEW_OBJECT      type ABAP_BOOL value ABAP_FALSE,
             LV_CURRENT_CHILD   type ref to CL_CRM_GENIL_CONTAINER_OBJECT,
             LS_RELATION_DETAIL type CRMT_RELATION_DETAIL,
             LS_CHILD_PROPS     type CRMT_OBJ_PROPERTIES_DATA.
       field-symbols: <REL>     type CRMT_GENIL_CONT_RELATION,
                      <ENTRY>   type ref to IF_GENIL_CONTAINER_OBJECT.
       LS_RELATION_DETAIL = OBJECT_MODEL->GET_RELATION( IV_NAMESPACE     = ME->DATA_REF->NAMESPACE
                                                        IV_RELATION_NAME = IV_RELATION_NAME ).
    * check model compliantness of given relation
       if LS_RELATION_DETAIL-OBJECT_A ne ME->DATA_REF->OBJECT_NAME and
          OBJECT_MODEL->IS_SUBOBJECT_OF( IV_NAMESPACE   = ME->DATA_REF->NAMESPACE
                                         IV_OBJECT_NAME = ME->DATA_REF->OBJECT_NAME
                                         IV_SUPER_NAME  = LS_RELATION_DETAIL-OBJECT_A ) ne ABAP_TRUE.
         LV_TEXT = TEXT-001.
         replace '&1' in LV_TEXT with IV_RELATION_NAME.
         replace '&2' in LV_TEXT with ME->DATA_REF->OBJECT_NAME.
         raise exception type CX_CRM_GENIL_MODEL_ERROR
           exporting
             TEXT = LV_TEXT.
       endif.
    * Assign own namespace to child
       LS_CONT_OBJ-NAMESPACE = ME->DATA_REF->NAMESPACE.
    * derive target object type from model
       LS_CONT_OBJ-OBJECT_NAME = LS_RELATION_DETAIL-OBJECT_B.
       LS_CHILD_PROPS = OBJECT_MODEL->GET_OBJECT_PROPERTIES( IV_NAMESPACE   = LS_CONT_OBJ-NAMESPACE
                                                             IV_OBJECT_NAME = LS_CONT_OBJ-OBJECT_NAME ).
    * determine actual target object in case of polymorph relations
       if LS_CHILD_PROPS-OBJECT_KIND = IF_GENIL_OBJ_MODEL=>ABSTRACT_OBJECT.
         if IV_CHILD_NAME is not initial.
           if OBJECT_MODEL->IS_SUBOBJECT_OF( IV_NAMESPACE   = ME->DATA_REF->NAMESPACE
                                             IV_OBJECT_NAME = IV_CHILD_NAME
                                             IV_SUPER_NAME  = LS_CONT_OBJ-OBJECT_NAME ) = ABAP_TRUE.
             if LS_CONT_OBJ-OBJECT_NAME ne IV_CHILD_NAME.
               LS_CONT_OBJ-OBJECT_NAME = IV_CHILD_NAME.
    *         Actual target object changed -> determine properties again!
               LS_CHILD_PROPS = OBJECT_MODEL->GET_OBJECT_PROPERTIES( IV_NAMESPACE   = LS_CONT_OBJ-NAMESPACE
                                                                     IV_OBJECT_NAME = LS_CONT_OBJ-OBJECT_NAME ).
             endif.
           else.
             raise exception type CX_CRM_GENIL_MODEL_ERROR2
               exporting
                 TEXTID = CX_CRM_GENIL_MODEL_ERROR2=>INVALID_SUBOBJECT
                 TEXT   = |{ IV_CHILD_NAME }|
                 TEXT2  = |{ LS_CONT_OBJ-OBJECT_NAME }|.
           endif.
         elseif IV_HANDLE_FLAG = ABAP_FALSE.
           raise exception type CX_CRM_GENIL_INCORRECT_IMPL
             exporting
               TEXTID = CX_CRM_GENIL_INCORRECT_IMPL=>MISSING_ACTUAL_TYPE.
         else.
    *     Handle Flag set -> Child is created as placeholder -> accept abstract type!
           LS_CONT_OBJ-DELTA_FLAG = IF_GENIL_CONT_SIMPLE_OBJECT=>DELTA_ABSTRACT.
         endif.
       endif.
       LS_CONT_OBJ-ATTR_REQUESTED = IV_ATTR_REQ.
    * delete/modify-allowed properties are not yet determined
       LS_CONT_OBJ-DELETE_ALLOWED = IF_GENIL_NULLABLE_BOOLEAN=>NULL.
       LS_CONT_OBJ-MODIFY_ALLOWED = IF_GENIL_NULLABLE_BOOLEAN=>NULL.
    * child inherits group_number of parent
       LS_CONT_OBJ-GROUP_NUMBER = ME->DATA_REF->GROUP_NUMBER.
       ME->ADD_CHILD_INTERNAL( exporting IS_RELATION_DETAIL = LS_RELATION_DETAIL
                                         IS_CHILD_PROPS     = LS_CHILD_PROPS
                                         IS_CHILD_ENTRY     = LS_CONT_OBJ
                                         IS_CHILD_KEY       = IS_CHILD_KEY
                                         IV_HANDLE_FLAG     = IV_HANDLE_FLAG
                                         IV_KEY_IS_ID       = IV_KEY_IS_ID
                                         IV_SUPPRESS_EVENT  = IV_SUPPRESS_EVENT
                               importing EV_RESULT          = RV_RESULT ).
    endmethod. 
    Note: I've thoroughly compared & checked the Dev & Prd system and moved all the transport requests. I don't get this issue in development system. It's only in production system.
    Kindly provide me your valuable Inputs, as this is very critical issue.
    Cheers
    Pradyp

    Dear Jwala
    Thanks for your prompt reply, I've solved this Issue by my own. The reason behind this Issue is that the system was unable to pick the version ID numbers with View Indicators with programs & it need to be updated in table V_T582V as it was missing for me in Production system.
    as the version number will be a base for the UI Conversion Class to show the screens.
    So, I'm closing this thread, Kindly don't mind as I'm making this correct answer on my own to close the thread. Even though It's against ROE, I want that all peers to know the exact solution.
    Cheers
    Pradyp

  • How to add an customized HR infotype in personnel information on ESS

    Dear Experts,
    I am trying to add a customized HR infotype in personnel information on ESS.  Could you pls provide me some solution or references document. Thanks
    Daniel

    Daniel,
    check this(may give some hint)
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/profile/essPersonalInformationUIenhancementwithoutmodification
    Changing an input field's appearance to Optional in an ESS WD Java scenario
    you need to modify the HomePage framework to include link in ESS for custom infotype.search for chris solomon's blogs in sdn
    Thanks
    Bala Duvvuri

  • Please help me, I gave my information out to a person and he has changed all my information and now I can't get in.. I know the persons name

    Please help me, I gave my information out to a person and he has changed all my information and I can't log back in.
    Adrian Lee is the person I gave it to.
    He told me to email him my information so he can level me up in the game Clash of Clans so I did and he changed all my information and I told him to give it back via email and he refused but suggested to restore my iPod and it would go back to normal and I dis, I nearly lost everything since I haven't backed it up for a while and I'm a Music Producer, this password is my paycheck, my food, my rent, my everything, now I'm not sure if this is the right place to go to but please help me. i'm begging you to please restore my password.. I'm not asking for anything of what I lost back, just my password so I can change it, get my things back and move on with my life. I have really back anxiety attacks. Please. I'm begging you. You guys are my last chance..
    <Emails Edited By Host>

    If you can't contact the person and get the information back then:
    - Contact the police for help
    - Restore from backup.
    If you can't get it from the person or from a backup then it is lost.
    In the future be carrful about who you give your login information to.

  • I can't change my billing information or my credit card information - Please Contact itunes support to complete transaction

    For a week now I've not been able to change my billing address or information OR change the credit card I wish to use on itunes.  I've tried resetting the cache and warning messages, restarting my machine, and contacting itunes support.  This is rediculous.  I recieved an e-mail 4 days later saying that I couldn't use that credit card?  The funny thing is, I have another account that can...  So why can't I change it on this account?  This is my main account and I want to use my main credit card.  So finally they just deleted my old credit card information.  This is fine, but I still can't add a credit card or even just change my billing information.  This is absolutely ********.  How hard is it to have your customers edit form information and store it in your database?  Seriously, I'm so upset right now.  Apple is known for being user friendly, how is this user friendly?  I can't change my own billing information?  I also feel like I'm one of the only people in my group of friends that actually pays for all of their music/movies, but now I can't even do that?  This is so upsetting.  Apple, I'm so disappointed in you.

    Ok, so I finally got help on this issue.  Basically, I had tried to edit my credit card information, and it secretly locked my account.  After finally getting a hold of a representative through the chat service on the support site, I was able to get this fixed.  I had been previously helped by someone through e-mail, but that was a complete waste of time.  Go for the chat service, it's a million times better.  They were able to release the secret block on my account...from trying to change my own information so that I could change it and be on my way.  Anyway, I hope this helps.

  • I created an new apple id and want to change my billing information from the old id to the new id. How do i do that, as i have been trying it like always and it keeps saying that i have to contact apple support? I have an iphone 5S.

    I created an new apple id and want to change my billing information from the old id to the new id. How do i do that, as i have been trying it like always and it keeps saying that i have to contact apple support? I have an iphone 5S.

    Good day BenithaK,
    Once you have changed your Apple ID, you need to set it up for use in the various systems such as iTunes, the App Store, etc so it can be used as intended. This article shows how to do that -
    Apple ID: What to do after you change your Apple ID - Apple Support
    To change your iTunes billing information for either Apple ID account, follow the directions in this article -
    iTunes 12 for Mac: Manage your iTunes Store account
    Thanks for using Apple Support Communities.
    Safe computing,
    Brett L 

  • How do I change credit card information on my Apple account?

    I am trying to change the payment information attached to my Apple account, how do I do this?  Thanks!

    iTunes Store: Changing your payment information
    http://support.apple.com/kb/HT1918
    iTunes Store & Mac App Store: About payment card authorization holds
    http://support.apple.com/kb/HT3702
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/TS5366

  • ITunes password no longer works after changing the account information on iPad?

    I gave my iPad to my daughter, who changed the account information so I wouldn't be charged for her downloads.  Now I can't get into my iTunes account with my old password.  Does anyone have any suggestions?  I'm not very tech saavy!  Thanks.

    As Tyler implies: you opened up the phone and furtled about inside it, therefore the responsibility for the state of the phone lies entirely with yourself. Nobody else can help, as nobody can know what you did in there.

  • HT1491 Hi - I am trying to change my payment information but I keep getting the message that my session has timed out. I have turned my phone off but that doesn't seem to help.

    Hi - I am trying to change my payment information but I keep getting the message that my session has timed out. I have turned my phone off but that doesn't seem to help.
    Does anyone know what I need to do?
    Thanks. :-)

    What are the exact error codes that are appearing when trying to update?
    Have the steps for troubleshooting those errors as listed in the article from which the question was posted been tried?

  • FM for changing vendor Tax information

    Hello,
    is there any FM for changing vendor Tax information?
    Thanks,
    Moshe

    read data with VENDOR_READ and update desired date with VENDOR_UPDATE

  • HT5622 I want to change my security information so I went to "Manage your Apple ID" but I could not find "Reset your security information" can someone help me to change my security answers. Thanks in advance

    Hello Everyone,
    I want to change my security information so I went to "Manage your Apple ID" but I could not find "Reset your security information" can someone help me to change my security answers.
    Thanks in advance

    call 1-800-275-2273 (1-800-MY-APPLE)

  • I change my apple ID and password like a week now and after changing all my information and MY apple ID, i noticed that i lost all my picture in my camer roll and my photo stream too ;(.. Can anyone please help me how to bring it back all my photos?

    I change my apple ID and password like a week now and after changing all my information and MY apple ID, i noticed that i lost all my picture in my camer roll and my photo stream too ;(.. Can anyone please help me how to bring it back all my photos?

    I don't know about your camera roll, but for photostream just do this:
    Go into Settings > iCloud > Delete Account and then sign back in using your Apple ID information.
    Make sure to do the same thing with your iTunes and App Store options.
    Settings > iTunes and App Store > Click Email and sign out, then sign back in.

  • Change CSV device information in subscription?

    We have: SQL Server Reporting Services 2008 R2 SP2.
    We have a report subscription that renders in CSV.  The ReportServer.config file has UTF-8 for the Encoding for the CSV rendering.  We want to leave that alone.  We want to change the encoding to UTF-16 for a single report subscription.
    TIA,
    -Peter

    Hi Peter,
    Just as you said, we can change the device information settings for the CSV rendering extension in ReportServer.config file. But the change would apply to all the reports on report server. As per my understanding, I don’t think we can change the CSV device
    information for a single report, let alone a single report subscription.
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • I need to change my account information on iTunes?

    How do I change my account information on iTunes?

    Go into the iTunes store.  In the top right, click on your email address under account and it will ask you to log in.  From there, you should be able to edit just about anything you need to.

  • HT2731 Hello my I tune account name is edited . I've changed my billing information and I think the I tune is still looking for my old billing info, which is not active anymore.

    Hello after changing my billing information my account is still not working. I think the sistem is still looking for my old billing info. and that info is not working anymore. will you please check it and advise.

    Welcome to the Apple community.
    I have asked for your email address to be edited out. Post your address in an open thread is a sure way to be bombarded by unwanted email, remember it will be here long after you have resolved your problem, for automated detection software to find.
    If you want people to contact you, enable others to see your email address in your profile.
    If you have already changed your account information with Apple at my Apple ID, in order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")
    When you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again.
    In order to change your Apple ID or password for your iCloud account on your computer, you need to sign out of the account from your computer first, then sign back in using your updated details. (System Preferences > iCloud, click the sign out button)
    In order to change your Apple ID or password for your iTunes account on your iOS device, you need to sign out from your iOS device first, then sign back in using your updated details. (Settings > store, scroll down and tap your ID)

Maybe you are looking for