Error while updating Infotype

Hi I am currently hiring an employee Through PA30  by maintaining IT-0000,IT-0001 and IT-0002 . Now what I want is that if I get an error in maintaining any of these Infotypes I want either all to get updated at once or none at all.
So if I get an error in say IT-0002 ,then since it is comes after saving the records in IT-0000 and IT-0001 so I don't want it to generate the employee number .
Right now if I get an error in IT-0002 it generates a number from the internal number range and maintains IT-0000 for it.
I have tried rollback work  and  even commit work statement  after executing PA30 but that doesn't work either.
<removed by moderator>
Regards,
Amber
Edited by: Thomas Zloch on Aug 24, 2011 3:51 PM

Hi Bhatia,
   I am doing the same, how can we roll backe the creation of PERNR.
   I am using   HR_MAINTAIN_MASTERDATA FM to create pernr using multiple infotypes 0000, 0002,
   0006, 0007, 0008, 0014, 0015, 0023, 0077, 0105. While creating if i get error in one of the infotype i   
   don't want to create perrn. pls. can you share how dido yu achieve this.
    I appriciate your help.
  Thanks,
   Mannu

Similar Messages

  • Error while updating Infotype P9002

    Dear Experts,
    I am trying to modify infotype P9002 using FM 'HR_INFOTYPE_OPERATION.....
    and I getting my dump error while uploading text format.
    some times I get message : No data stored for 9002 in the selected period.
    my requirement is: I need to modify amount fields in P9002 for some existing records in PA9002.
    My question is :
    1. how should be my ( notepad ) text format which is to be uploaded, should I include all the fields in P9002 in my notepad trext or just include all the fields in my internal table or only the fields which needs to be modified.
    2. If I modify infotype P9002 will the data gets modified in PA9002.
    Please advice
    Karthik

    hi,
        I read your error. You just use fm 'HR_MAINTAIN_MASTERDATA', for this we doesn't require to give the fm in bapi_emp_enqueue and bapi_emp_dequeue.
        You want to modify, so first of all you just get the begda and endda of that record, then pass these values in fm.
         For this you have to fill mandatory fields like pernr, and fields.nd
         You just have to pass table pprop. In this we have to fill infty, fieldname and fieldvalue for each and every field.
    thanks & regards,
         sekhar.

  • Error while updating infotype using HINUINFO_UPDATE

    Hi All,
    While executing the program 'HINUINFO_UPDATE'
    i am getting an error 'No object identification permitted for infotype 0582, subtype LTA'.
    After the approval for LTA claim is done in ESS i have executed the program 'HINUINFO_UPDATE' to update he infotypes 15 and 582. Infotype 15 is getting created but while creating the infotype 582 system gives the above error message.
    In the detailed error log system gives the following message.
    "You attempted to access a data record with the object identification 1. However, according to the Customizing settings, object identifications cannot be used for subtype LTA of infotype 0582".
    Helpful answers will be rewarded .

    Solved by SAP

  • Getting error while Updating Infotype 0377

    Hi All,
    I am using FM 'HR_ECM_INSERT_INFOTYPE' for updating data from an excel file in infotype 0377 but i am getting this error 'Entry   VSEL   does not exist in T5UBA (check entry)'. This is coming due to the foreign key validation on the fields BPLAN & LEVL1. So the records are not getting updated in the infotype. But when i am trying to create a record with same data manually through PA30 its getting created. Can you please tell me which FM is being used for infotype updation in PA30. If i use the same FM, may be my issue gets resolved.Thanks.
    Regards,
    Arpita.

    Please find the code below:
    CREATE OBJECT v_message_handler.
        CLEAR: v_is_ok.
        CALL FUNCTION 'HR_ECM_INITIALIZE_BUFFER'
          EXPORTING
            message_handler = v_message_handler.
        CALL FUNCTION 'HR_ECM_ENQUEUE_PERNR'
          EXPORTING
            pernr           = wa_p0377-pernr
            message_handler = v_message_handler
          IMPORTING
            is_ok           = v_is_ok.
        CLEAR v_error_mssg.
        IF v_is_ok IS INITIAL.
          PERFORM get_error_msg USING v_message_handler
                                      wa_p0377-pernr
                                CHANGING v_error_mssg.
          v_tot_err = v_tot_err + 1.
        ELSE.
    *      CALL FUNCTION 'HR_ECM_INSERT_INFOTYPE'
    *        EXPORTING
    *          pnnnn           = wa_p0377
    *          message_handler = v_message_handler
    *        IMPORTING
    *          is_ok           = v_is_ok.
    *      IF  v_is_ok IS INITIAL.
    *        PERFORM get_error_msg USING v_message_handler
    *                                    wa_p0377-pernr
    *                              CHANGING v_error_mssg.
    *        v_tot_err = v_tot_err + 1.
    *      ELSE.
    *        v_tot_suc = v_tot_suc + 1.
    *        CLEAR wa_error.
    *        wa_error-cnt = '1'.
    *        wa_error-pernr = wa_p0377-pernr.
    *        wa_error-desc = 'Data Successfully Uploaded'.
    *        APPEND wa_error TO i_error.
    *      ENDIF.
          CALL FUNCTION 'HR_INFOTYPE_OPERATION'
            EXPORTING
              infty            = '0377'
              number           = wa_p0377-pernr
    *         SUBTYPE          =
    *         OBJECTID         =
    *         LOCKINDICATOR    =
              validityend      = wa_p0377-endda
              validitybegin    = wa_p0377-begda
    *         RECORDNUMBER     =
              record           = wa_p0377
              operation        = 'INS'
    *         TCLAS            = 'A'
    *         DIALOG_MODE      = '0'
    *         NOCOMMIT         =
    *         VIEW_IDENTIFIER  =
    *         SECONDARY_RECORD =
            IMPORTING
              return           = v_return
              key              = wa_perdatakey
            EXCEPTIONS
              OTHERS           = 0.
          IF sy-subrc = 0.
            "Success
          ENDIF.
          IF v_error_mssg IS INITIAL.
            CALL FUNCTION 'HR_ECM_FLUSH_INFOTYPE'
              EXPORTING
                nocommit        = ' '
                message_handler = v_message_handler.
          ENDIF.
          CLEAR v_is_ok.
          CALL FUNCTION 'HR_ECM_DEQUEUE_PERNR'
            EXPORTING
              pernr           = wa_p0377-pernr
              message_handler = v_message_handler
            IMPORTING
              is_ok           = v_is_ok.
        ENDIF.
        CLEAR wa_p0377.
      ENDLOOP.
      FREE i_it0377.           "Clearing the internal table
    ENDFORM.                    " SELECT_UPLOAD_DATA
    Actually in this program i am fetching values from an excel file & updating them into IT0377.Yes the IT171 is maintained for those employees. CAn you please guide me as how to resolve this issue? If need more info, pls let me know.Thanks.

  • Error while updating HRA in infotype 581 for the employees.

    Hi,
    System is showing an error while updating HRA in infotype 581 for the employees.
    The error is No Automatic updation for IT0008. Allowance Grouping not found.
    What is this error. Please advice what to do in this case.

    Hi Deepthi,
    Check Table V_T7INA5,V_T7INA1,V_T7INA3 and V_T7INA9 also.
    Check it,
    Regards,
    Vinod.
    Edited by: vinod rao on Jul 30, 2008 1:23 PM

  • Error while updating data in Infotype-0015

    Hi Experts,
    We are getting following error message while updating Infotype-0015 for newly created wage types:
    "Pay scale grpg for allowances for 90000108 is not defined on 20110524"
    As per my knowledge we need to maintain table V_T7INA1, V_T7INA3 & feature LGMST.
    Pls. throw some lights on this issue, which area we need to take care while configuration.
    We are not using India Payroll.
    Regards,
    Rameshwar

    If you are not using then V_T7INA1 and V_T7INA3 doesn't make any duifference. Check the INVAl module of the wage type and configure the table V_T510, V_T539J accordingly.
    If it is for India then you also need to configrue V_T7INA9 and LGMST will not be required for India.

  • Error while updating a plan

    Hi,
    I have encountered an error while updating a plan. While i update the uplan , the grid gets filled but it throws a message stating
    "Maximum Number of Result Blocks has been reached"
    Maximum number of Result Blocks has been reached.
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0xD4]
    Error while processing the data for the step 'Grid'
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
    Maximum number of Result Blocks has been reached.
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0xD4]
    Error while processing the data for the step 'Grid'
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
    Update of Plan "deposittest created 7/19/2007 5:11:50 PM" failed.
    [Oracle BAM Enterprise Link error code:  PlanMgr -- 0x1, PlanMgr -- 0xD5]
    The data updation stops after the row count 49900.
    Please help to resolve this error .
    Thanks in advance.
    Regards,
    Lathika

    Hi,
    in BAM-Administrator you should rraise Parameter "MaxResultBlocks".
    BAM originaly is al licensed Software from Group1 named "Sagent Data Flow".
    This may help searching the web.
    Greetz,
    GOI

  • Error while updating to iOS 6.1.2

    Error while updating software to iOS 6.1.2

    what is the error? if you want help you need to provide some details.

  • Error While updating info in the People Form-Additional Personla Details

    Hi All,
    Iam getting an Error While updating information in the People Form,Additional Personla Details DFF.
    Error Like:
    APP-PER-289974:There has been an error Processing this person,The error encountered is 'ORA-20001:HZ_STNC_SQL_EXCEP:N,PROC.sync_Person,N,ERROR.ORA-25153:Temporary Tablespace is empty ,N,POO,1265890',which occured in procedure  per_htrca_merge_tca_person at step10.
    Please contact your support represntative.
    Thanks -
    Sowmya

    Thanks you,
    By this Note id:395136.1
    Iam unable to find this Set profile 'HZ: Generate Events for DQM Real-Time Synchronization' to No
    with this Note id:278422.1
    We are unable to find this proifle option : HZ: Data Sharing and Security Enabled profile
    we are using applications 11i.
    please help to find this Profile option.
    But with this note id:ID 395136.1
    This is Working.
    Query for HZ: DQM Synchronization Method profile. Set the value to Disable.
    But iam facing proble while uploding data to DFF ,Error--SQL exception occurred during PL/SQL upload.
    Thanks for the Support-
    Sowmya.
    Edited by: user13419037 on Aug 11, 2011 11:53 PM
    Edited by: user13419037 on Aug 12, 2011 12:03 AM
    Edited by: user13419037 on Aug 12, 2011 3:45 AM

  • Error while updating the content in workflow

    Hi,
    I'm getting an error while updating the content in workflow thru the checkout option. i.e. contributor checks in the content - reviewer rejects the content - then contributor checks out and modifies the content as per the reviewer's remarks and while checking in the following error occurs
    Content Server Request Failed
    Unable to check in content item 'HO000128' for workflow. Unable to execute service method 'checkInUpdateRevByID'. (System Error: Runtime error: java.lang.NullPointerException
    at intradoc.server.DocServiceHandler.checkInRevByID(DocServiceHandler.java:248)
    at intradoc.server.DocServiceHandler.checkInUpdateRevByID(DocServiceHandler.java:240)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:617)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:293)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    at intradoc.server.Service.doCodeEx(Service.java:490)
    at intradoc.server.Service.doCode(Service.java:472)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1360)
    at intradoc.server.Service.doAction(Service.java:452)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1201)
    at intradoc.server.Service.doActions(Service.java:447)
    at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1071)
    at intradoc.server.Service.executeSubServiceCode(Service.java:3497)
    at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:942)
    at intradoc.server.Service.executeServiceEx(Service.java:3492)
    at intradoc.server.Service.executeService(Service.java:3476)
    at intradoc.server.DocServiceHandler.determineWorkflowCheckin(DocServiceHandler.java:3833)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:617)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:293)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    at intradoc.server.Service.doCodeEx(Service.java:490)
    at intradoc.server.Service.doCode(Service.java:472)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1360)
    at intradoc.server.Service.doAction(Service.java:452)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1201)
    at intradoc.server.Service.doActions(Service.java:447)
    at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1071)
    at intradoc.server.Service.executeSubServiceCode(Service.java:3497)
    at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:942)
    at intradoc.server.Service.executeServiceEx(Service.java:3492)
    at intradoc.server.Service.executeService(Service.java:3476)
    at intradoc.server.Service.doSubService(Service.java:3465)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:617)
    at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:279)
    at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:264)
    at intradoc.server.Service.doCodeEx(Service.java:507)
    at intradoc.server.Service.doCode(Service.java:472)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1360)
    at intradoc.server.Service.doAction(Service.java:452)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1201)
    at intradoc.server.Service.doActions(Service.java:447)
    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1121)
    at intradoc.server.Service.executeActions(Service.java:433)
    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:635)
    at intradoc.server.Service.doRequest(Service.java:1707)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:359)
    at intradoc.server.IdcServerThread.run(IdcServerThread.java:197))
    Please help to resolve.
    Thanks in advance
    Prasad

    I also get error while updating the content in workflow thru the checkout option as reviewer. i.e. contributor checks in the content - then reviewer either updates the metadata or checks out and modifies the content and while checking in the following error occurs
    Content Server Request Failed
    Unable to update the content item information for 'HO000128'.
    The content ID must be specified.
    Please help to resolve.
    Thanks in advance
    Prasad

  • Error while updating my WP

    Hi, I have got an error while updating my WP on lumia 800? the error code is 80070002. how to resole

    @RoukailaRedouane
    Similar issue raised here with referral to resource below:http://answers.microsoft.com/en-us/winphone/forum/wp7-sync/error-80070002-occurred-when-checking-upd...
    More information can be found here:http://support.microsoft.com/kb/910336/en-us
    Happy to have helped forum with a Support Ratio = 42.5

  • Error while updating phone button template in CUCM 8.6

    Experts,
    I'm getting following error while updating phone button template in CUCM 8.6;
    Update failed. java.sql.SQLException: System catalog (sysprocbody) corrupted.
    Please check the screen shot attached here with.
    What could be the reason?
    Thanks
    Vivek

    I'm not a Cisco employee, so I can't do anything with your backup.!
    You need to take a backup as a precaution (You should have been doing this anyway) Then you need to call Cisco TAC to get the underlying problem fixed. CalManager is a locked-down environment, and only TAC can get the low-level access needed to fix database problems.
    GTG

  • Error while updating decimal places in general settings

    Hii All
             I have got an error while updating Decimal places in General Settings
    Cannot update while another user is connected to the company i have checked, there is no other user logged in, i could add other settings but the problem is only with Decimal Places
    Note : there are no postings yet, a fresh database for a new client
             what could be the possible reason
                                                                 thanks
                                                                         RIYAZ

    Hiii All
          As a forum rule, i have initially gone through with the existing threads and then i was force to post a thread,
              would be helpfull if there is any other way..
                                                Thanks
                                                         RIYAZ

  • Error while updating patch level 11 of HR

    Dear All,
    I am getting following error while updating HR patch level 11.
    Phase OBJECTS_LOCKED_?: Objects Locked in Requests
    Request      Names of Locked Transport Objects
    MRDK900089   LIMU REPS H99_POST_PAYMENT
                 LIMU REPS RPCIPE00
    MRDK900542   R3TR FORM HR_IN_TAXF16000Y
    the above request is in other client, and it is a local request, which is not getting transported; i mean it does not allow to transport. give the following error.
    Object messages: R3TR CINS 01200615322 0000824666
    Transport objects from package PCPO to target MRP only
    Object messages: R3TR NOTE 0000970953
    Transport objects from package PCPO to target MRP only
    Object messages: LIMU METH CL_HRPAY99_POSTING_LOG DATA_TOP_FILL_TEXT
    Transport objects from package PCPO to target MRP only
    Object messages: LIMU METH CL_HRPAY99_POSTING_LOG PUT_PERNR_INFO
    Transport objects from package PCPO to target MRP only
    Object messages: LIMU REPS H99_POST_PAYMENT
    Transport objects from package PCPO to target MRP only
    Please help me how to rectify.
    Thanks n regards
    Bhaskar

    Hello Bhaskar,
    is the transport already approved?
    If not approve it and try it again. (also it is a local one)
    If not check the objects and unlock them manually the following way:
    SE03 => Unlock Objects (Expert Tool)
    But if you approve your transport... the objects should be unlocked.
    Regards
    Stefan

  • Error while updating data from PSA to ODS

    Hi Sap Gurus,
    I am facing the error while updating data from PSA to ODS in BI 7.0
    The exact error message is:
    The argument 'TBD' cannot be interpreted as a number
    The error was triggered at the following point in the program:
    GP44QSI5RV9ZA5X0NX0YMTP1FRJ 5212
    Please suggest how to proceed on this issue.
    Points will be awarded.

    Hi ,
    Try to simulate the process.That can give you exact error location.
    It seems like while updating few records may be no in the format of the field in which it is updated.
    Regards
    Rahul Bindroo

Maybe you are looking for