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.

Similar Messages

  • Getting Error while updating   Vendor Challan

    Dear Guru,
                     my client want to use  Extended withholidng Tax . i v configured totaly according to indian TDS configuration. i m getting error while updating the vendor challan.
                 No unpaid tax lines exist for the given selection criteria.
    Message no. 8I702
    Diagnosis
    The corresponding withholding tax line  &1& is not present in WITH_ITEM table.
    System Response
    For withholding tax recovered from the vendor, tax line is present in table BSIS, but the corresponding entry is missing in table WITH_ITEM , which is necessary for challan updation. Check the entries.
    Procedure
    check entries in table WITH_ITEM for the open tax items chosen for clearing.
        Business Place and section code updating properly in table.....
    Thanks & Advance
    Laxmi Narayan

    Dear Laxmi Narayan,
    This error would occur, if you miss Business Area/Section Code at the time of Invoice.
    The following thread should answer your query:
    Extended W/H Tax
    Regards,
    Naveen.

  • TS3694 I get error while updating my I-phones its shows 3004

    I get error while updateing my I-phone and its give number as 3004..
    Girish

    We dont know yet if he is doing it from the phone itself!
    If you do from the phone try from iTunes and vice versa.

  • Get Error while update the User defined row table through DSK Code

    Hi experts,
    I have got an error while updating the user row defined table.
    Error is - "Invalid row"
    I have created one master table "@CBF_FARM " and Child table "@CBF_FAR1"
    First i inserted 5 record in the child table so in my my child table there are 5 Line id (1,2,3,4,5 one for each row).
    after that i delete 2 rows (3rd & 4th row) from child table now in my child table there are 3 rows( Line id 1, 2, 5). Please See attachment.
    Now i am updating  the last record of child table through Code  (Line id is 5)  from other form, then i got error  invalid row.
    Following Code used for updating the user defined child table.
      SAPbobsCOM.GeneralService oGeneralService1 = null;
                                    SAPbobsCOM.GeneralData oGeneralData1 = null;
                                    SAPbobsCOM.GeneralDataParams oGeneralParams1 = null;
                                    SAPbobsCOM.CompanyService sCmp1 = null;
                                    SAPbobsCOM.GeneralData oChild1 = null;
                                    SAPbobsCOM.GeneralDataCollection oChildren1 = null;
                                    sCmp1 = clsAddOn.LDNA_Company.GetCompanyService();
                                    oGeneralService1 = sCmp1.GetGeneralService("CBF_FARM");
                                    // Get UDO record
                                    oGeneralParams1 = ((SAPbobsCOM.GeneralDataParams)(oGeneralService1.GetDataInterface(SAPbobsCOM.GeneralServiceDataInterfaces.gsGeneralDataParams)));
                                    oGeneralParams1.SetProperty("Code", oForm.Items.Item("edtFarmCd").Specific.Value);
                                    oGeneralData1 = oGeneralService1.GetByParams(oGeneralParams1);
                                    // Add lines on UDO Child Table
                                    oChildren1 = oGeneralData1.Child("CBF_FAR1");
                                    // Create data for rows in the child table
                                    SAPbouiCOM.Item oItem = oForm.Items.Item("cmbShed");
                                    oCombo = oItem.Specific;
                                    string ShedCode = oCombo.Selected.Value;
                                    ldna_Rec = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                                    string strQuery1 = "select LineId from [@CBF_FAR1] where U_ShedCd = " + ShedCode;
                                    ldna_Rec.DoQuery(strQuery1);
                                    oChild1 = oChildren1.Item(ldna_Rec.Fields.Item("LineId").Value - 1);
                                    oChild1.SetProperty("U_Status", "Ready For Schedule");
                                    //Update the UDO Record
                                    oGeneralService1.Update(oGeneralData1);
    Please Help me it is an urgent requirement,
    -Regards
    Vikas

    hi.
    Error is - "Invalid row"
    Now i am updating  the last record of child table through Code  (Line id is 5)  from other form, then i got error  invalid row.
    As per my knowledge
    What i understood is you have 5 lines and you are going to be update 5th line
    am i correct..
    while u are updating the line in child table
    you have to consider like this..
    line number         u have to update like
    1                                        0
    2                                        1
    3                                        2
    4                                        3
    5                                        4
    which means in child table treat
    line 1  as 0
    line 2 as  1
    line 5 as 4
    If you want to update the line 5 u have to mention 4 th line

  • 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

  • Getting error while updating data element using Xquery Automator

    Hi,
    I am getting following error while i am trying to update a data element in my task.
    <Nov 28, 2011 5:02:40 PM IST> <Error> <oms> <BEA-000000> <automation.AutomationDispatcher: Failed to execute
    on/plugin/external/ACOI_TMIP_POC/1.0.0/CLARIFY_Task.automatedtask.acoi_tmip_poc.ResponseAutomation] due to E
    hile running Script resource [file:///D:/AshishWorkspace_WithOrchestration/ACOI_TMIP_POC/resources/CLARIFY_R
    exception location: ; SystemID: module with no systemId*; Line#: 15; Column#: -1*
    com.mslv.oms.automation.AutomationException: Exception thrown while running Script resource [file:///D:/Ashi
    rchestration/ACOI_TMIP_POC/resources/CLARIFY_Response.xquery]; exception location: ; SystemID: *module with
    e#: 15; Column#: -1
    the Xquery that i am using is pretty simple:
    declare namespace automator = "java:oracle.communications.ordermanagement.automation.plugin.ScriptSenderContextInvocation";
    declare namespace context = "java:com.mslv.oms.automation.TaskContext";
    declare namespace log = "java:org.apache.commons.logging.Log";
    declare namespace oms="urn:com:metasolv:oms:xmlapi:1";
    declare namespace prop = "OSM_POC";
    declare variable $xmlnsosm7POC := "";
    declare variable $log external;
    declare variable $automator external;
    declare variable $context external;
    let $CLFY_XML := //CLFY_XML
    let $Id_Number :=//Id_Number
    return
    automator:setUpdateOrder($automator,"true"),
    log:info($log,fn:concat('ID request number is: ', $Id_Number)),
    <ord:OrderDataUpdate xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:odu="http://www.oracle.com/OMS/OrderDataUpdate" targetNameSpace="http://www.oracle.com/OMS/OrderDataUpdate" xmlns:ord="urn:com:metasolv:oms:xmlapi:1">
    <ord:Add path="/CLFY_ID">{data($Id_Number)}</ord:Add>
    </ord:OrderDataUpdate>
    Can anyone please tell me the reason due to which this error is coming.
    Thanking in advance
    Ashish Garg

    Hello.
    Ok I need you to tell me a little bit more about your automator, did you config an Xquery Automator with Event Type: Internal?
    You should declare namespace automator = "java:oracle.communications.ordermanagement.automation.plugin.ScriptReceiverContextInvocation";
    instead of
    declare namespace automator = "java:oracle.communications.ordermanagement.automation.plugin.ScriptSenderContextInvocation";
    And let my ask you, what are you trying to do with the next lines:
    let $CLFY_XML := //CLFY_XML
    let $Id_Number :=//Id_Number
    Becouse I think you are trying to acces the data on the task, If that is the reason, you should better use something like:
    let $order := ..//oms:GetOrder.Response
    let $orderId := $order/oms:_root/oms:orderHeader/oms:orderId
    with the above lines you are accesing the data that has been added to the task and the just acces the node that you nedd, for example here Im accesig the node
    orderId under OrderHeader
    Another thing is that if you want to update node which already exists in the task data, then you have to use something like:
    <OrderDataUpdate xmlns="http://www.metasolv.com/OMS/OrderDataUpdate/2002/10/25">
    <Update path="/orderHeader/orderId">{$orderId}</Update>
    </OrderDataUpdate>
    But if you have to add a new path you should have something like this:
    <OrderDataUpdate xmlns="http://www.metasolv.com/OMS/OrderDataUpdate/2002/10/25">
         <Add path="/OrderHeader">
              <Transaction>
                   <Name>{$orderId/text())}</Name>
              <ComponentKey>{$controlData/text()}</ComponentKey>
              </Transaction>
         </Add>
    </OrderDataUpdate>
    For the above transaction you should have in the dictionary the structure, OrderHeader in the root, and inside this the structure another node with the respective names
    <Transaction>
                   <Name>{$orderId/text())}</Name>
              <ComponentKey>{$controlData/text()}</ComponentKey>
              </Transaction>
    Another thing is that you should have all this structures in the Task Data of this Task.
    Hope this help
    Lucas.

  • Getting Error while Updating the ESB Default System

    Hi,
    We applied patch 7272722 and have upgraded the SOA Suite 10.1.3.1 to SOA Suite 10.1.3.4 on Windows (32 Bit).
    After upgrading , we are getting below error message while updating the Default System properties in ESB Console.
    An unhandled exception has been thrown in the ESB system. The exception reported is: "oracle.tip.esb.console.exception.ConsoleTransactionException: File repository not initialized.May be ESB bootstrap failed Please review ESB prameters for their correctness. at oracle.tip.esb.console.XMLConsoleManagerImpl.commit(XMLConsoleManagerImpl.java:2317) at oracle.tip.esb.console.XMLConsoleManagerImpl.updateSystemInRepository(XMLConsoleManagerImpl.java:882) at oracle.tip.esb.console.XMLConsoleManagerImpl.updateSystemFromElement(XMLConsoleManagerImpl.java:578) at oracle.tip.esb.console.XMLConsoleManagerImpl.updateSystem(XMLConsoleManagerImpl.java:556) at oracle.tip.esb.configuration.servlet.command.UpdateSystemCommand.execute(UpdateSystemCommand.java:61) at oracle.tip.esb.configuration.servlet.CommandServlet.doJob(CommandServlet.java:109) at oracle.tip.esb.configuration.servlet.CommandServlet.doPost(CommandServlet.java:76) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64) at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:400) at java.security.AccessController.doPrivileged(Native Method) at javax.security.auth.Subject.doAsPrivileged(Subject.java:517) at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:414) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595) ".
    We are also deploying new BPEL process but they are also not displayed on ESB Console.
    Please let us know how we can resolve the error.
    Thanks
    Udit

    Dear Laxmi Narayan,
    This error would occur, if you miss Business Area/Section Code at the time of Invoice.
    The following thread should answer your query:
    Extended W/H Tax
    Regards,
    Naveen.

  • 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.

  • Getting Error while updating Inventory from CSC

    Hi Experts,
    I am trying to update Inventory Status after placing order from CSC. I am able to update Inventory Status from Application, but i'm unable to do that from CSC.
    While updating inventory i'm getting below erros.
    CONTAINER:atg.commerce.CommerceException; SOURCE:CONTAINER:atg.service.pipeline.RunProcessException: An exception was thrown from the context of the link named [updateShippingGroupObjects].; SOURCE:CONTAINER:atg.commerce.CommerceException: Saving order m14168520004 failed because doing so would result in data being overwritten. This save attempt had an out of date repository item [hardgoodShippingGroup].; SOURCE:atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.commerce.order.OrderManager.updateOrder(OrderManager.java:2913)
            at atg.commerce.fulfillment.processor.ProcUpdateOrderRepository.runProcess(ProcUpdateOrderRepository.java:122)
            at atg.service.pipeline.PipelineLink.runProcess(PipelineLink.java:255)
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:365)
            at atg.service.pipeline.PipelineChainContext.runProcess(PipelineChainContext.java:207)
            at atg.service.pipeline.PipelineManager.runProcess(PipelineManager.java:475)
            at atg.commerce.fulfillment.HardgoodFulfiller.handleFulfillOrderFragment(HardgoodFulfiller.java:629)
            at atg.commerce.fulfillment.HardgoodFulfiller.handleMessage(HardgoodFulfiller.java:496)
            at atg.commerce.fulfillment.FulfillerSystem.receiveMessage(FulfillerSystem.java:476)
            at atg.dms.patchbay.ElementManager.deliverMessage(ElementManager.java:316)
            at atg.dms.patchbay.MessageLimbo.deliverDelayedMessageToMessageSink(MessageLimbo.java:1215)
            at atg.dms.patchbay.MessageLimbo.unlimboDelayedMessage(MessageLimbo.java:1174)
            at atg.dms.patchbay.MessageLimbo.unlimboMessage(MessageLimbo.java:961)
            at atg.dms.patchbay.MessageLimbo.poll(MessageLimbo.java:838)
            at atg.dms.patchbay.MessageLimbo.performScheduledTask(MessageLimbo.java:251)
            at atg.service.scheduler.ScheduledJob.runJobs(ScheduledJob.java:466)
            at atg.service.scheduler.Scheduler$2handler.run(Scheduler.java:782)
    Caused by: CONTAINER:atg.service.pipeline.RunProcessException: An exception was thrown from the context of the link named [updateShippingGroupObjects].; SOURCE:CONTAINER:atg.commerce.CommerceException: Saving order m14168520004 failed because doing so would result in data being overwritten. This save attempt had an out of date repository item [hardgoodShippingGroup].; SOURCE:atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:393)
            at atg.service.pipeline.PipelineChainContext.runProcess(PipelineChainContext.java:207)
            at atg.service.pipeline.PipelineManager.runProcess(PipelineManager.java:475)
            at atg.commerce.pipeline.CommercePipelineManager.runProcess(CommercePipelineManager.java:123)
            at atg.commerce.order.OrderManager.updateOrder(OrderManager.java:2910)
            ... 16 more
    Caused by: CONTAINER:atg.commerce.CommerceException: Saving order m14168520004 failed because doing so would result in data being overwritten. This save attempt had an out of date repository item [hardgoodShippingGroup].; SOURCE:atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.commerce.order.processor.ProcSaveShippingGroupObjects.runProcess(ProcSaveShippingGroupObjects.java:253)
            at atg.service.pipeline.PipelineLink.runProcess(PipelineLink.java:255)
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:365)
            ... 20 more
    Caused by: atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.adapter.gsa.GSAItemDescriptor.updateItem(GSAItemDescriptor.java:7516)
            at atg.adapter.gsa.GSARepository.updateItem(GSARepository.java:1075)
            at atg.commerce.order.processor.ProcSaveShippingGroupObjects.runProcess(ProcSaveShippingGroupObjects.java:249)
            ... 22 more
    SOURCE EXCEPTION:
    CAUGHT AT:
    CONTAINER:atg.service.pipeline.RunProcessException: An exception was thrown from the context of the link named [updateShippingGroupObjects].; SOURCE:CONTAINER:atg.commerce.CommerceException: Saving order m14168520004 failed because doing so would result in data being overwritten. This save attempt had an out of date repository item [hardgoodShippingGroup].; SOURCE:atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:393)
            at atg.service.pipeline.PipelineChainContext.runProcess(PipelineChainContext.java:207)
            at atg.service.pipeline.PipelineManager.runProcess(PipelineManager.java:475)
            at atg.commerce.pipeline.CommercePipelineManager.runProcess(CommercePipelineManager.java:123)
            at atg.commerce.order.OrderManager.updateOrder(OrderManager.java:2910)
            at atg.commerce.fulfillment.processor.ProcUpdateOrderRepository.runProcess(ProcUpdateOrderRepository.java:122)
            at atg.service.pipeline.PipelineLink.runProcess(PipelineLink.java:255)
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:365)
            at atg.service.pipeline.PipelineChainContext.runProcess(PipelineChainContext.java:207)
            at atg.service.pipeline.PipelineManager.runProcess(PipelineManager.java:475)
            at atg.commerce.fulfillment.HardgoodFulfiller.handleFulfillOrderFragment(HardgoodFulfiller.java:629)
            at atg.commerce.fulfillment.HardgoodFulfiller.handleMessage(HardgoodFulfiller.java:496)
            at atg.commerce.fulfillment.FulfillerSystem.receiveMessage(FulfillerSystem.java:476)
            at atg.dms.patchbay.ElementManager.deliverMessage(ElementManager.java:316)
            at atg.dms.patchbay.MessageLimbo.deliverDelayedMessageToMessageSink(MessageLimbo.java:1215)
            at atg.dms.patchbay.MessageLimbo.unlimboDelayedMessage(MessageLimbo.java:1174)
            at atg.dms.patchbay.MessageLimbo.unlimboMessage(MessageLimbo.java:961)
            at atg.dms.patchbay.MessageLimbo.poll(MessageLimbo.java:838)
            at atg.dms.patchbay.MessageLimbo.performScheduledTask(MessageLimbo.java:251)
            at atg.service.scheduler.ScheduledJob.runJobs(ScheduledJob.java:466)
            at atg.service.scheduler.Scheduler$2handler.run(Scheduler.java:782)
    Caused by: CONTAINER:atg.commerce.CommerceException: Saving order m14168520004 failed because doing so would result in data being overwritten. This save attempt had an out of date repository item [hardgoodShippingGroup].; SOURCE:atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.commerce.order.processor.ProcSaveShippingGroupObjects.runProcess(ProcSaveShippingGroupObjects.java:253)
            at atg.service.pipeline.PipelineLink.runProcess(PipelineLink.java:255)
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:365)
            ... 20 more
    Caused by: atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.adapter.gsa.GSAItemDescriptor.updateItem(GSAItemDescriptor.java:7516)
            at atg.adapter.gsa.GSARepository.updateItem(GSARepository.java:1075)
            at atg.commerce.order.processor.ProcSaveShippingGroupObjects.runProcess(ProcSaveShippingGroupObjects.java:249)
            ... 22 more
    SOURCE EXCEPTION:
    CAUGHT AT:
    CONTAINER:atg.commerce.CommerceException: Saving order m14168520004 failed because doing so would result in data being overwritten. This save attempt had an out of date repository item [hardgoodShippingGroup].; SOURCE:atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.commerce.order.processor.ProcSaveShippingGroupObjects.runProcess(ProcSaveShippingGroupObjects.java:253)
            at atg.service.pipeline.PipelineLink.runProcess(PipelineLink.java:255)
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:365)
            at atg.service.pipeline.PipelineChainContext.runProcess(PipelineChainContext.java:207)
            at atg.service.pipeline.PipelineManager.runProcess(PipelineManager.java:475)
            at atg.commerce.pipeline.CommercePipelineManager.runProcess(CommercePipelineManager.java:123)
            at atg.commerce.order.OrderManager.updateOrder(OrderManager.java:2910)
            at atg.commerce.fulfillment.processor.ProcUpdateOrderRepository.runProcess(ProcUpdateOrderRepository.java:122)
            at atg.service.pipeline.PipelineLink.runProcess(PipelineLink.java:255)
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:365)
            at atg.service.pipeline.PipelineChainContext.runProcess(PipelineChainContext.java:207)
            at atg.service.pipeline.PipelineManager.runProcess(PipelineManager.java:475)
            at atg.commerce.fulfillment.HardgoodFulfiller.handleFulfillOrderFragment(HardgoodFulfiller.java:629)
            at atg.commerce.fulfillment.HardgoodFulfiller.handleMessage(HardgoodFulfiller.java:496)
            at atg.commerce.fulfillment.FulfillerSystem.receiveMessage(FulfillerSystem.java:476)
            at atg.dms.patchbay.ElementManager.deliverMessage(ElementManager.java:316)
            at atg.dms.patchbay.MessageLimbo.deliverDelayedMessageToMessageSink(MessageLimbo.java:1215)
            at atg.dms.patchbay.MessageLimbo.unlimboDelayedMessage(MessageLimbo.java:1174)
            at atg.dms.patchbay.MessageLimbo.unlimboMessage(MessageLimbo.java:961)
            at atg.dms.patchbay.MessageLimbo.poll(MessageLimbo.java:838)
            at atg.dms.patchbay.MessageLimbo.performScheduledTask(MessageLimbo.java:251)
            at atg.service.scheduler.ScheduledJob.runJobs(ScheduledJob.java:466)
            at atg.service.scheduler.Scheduler$2handler.run(Scheduler.java:782)
    Caused by: atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.adapter.gsa.GSAItemDescriptor.updateItem(GSAItemDescriptor.java:7516)
            at atg.adapter.gsa.GSARepository.updateItem(GSARepository.java:1075)
            at atg.commerce.order.processor.ProcSaveShippingGroupObjects.runProcess(ProcSaveShippingGroupObjects.java:249)
            ... 22 more
    SOURCE EXCEPTION:
    atg.repository.ConcurrentUpdateException: no rows updated oldVersion=4 for item=hardgoodShippingGroup:3018290013 in GSATransaction=atg.adapter.gsa.GSATransaction@5e84dab    thread=/atg/dynamo/service/Scheduler-reusablejobhandler-MSG-LIMBO-POLL transaction=TransactionImple < ac, BasicAction: a50ac08:b19f:52036610:9070 status: ActionStatus.RUNNING >
            at atg.adapter.gsa.GSAItemDescriptor.updateItem(GSAItemDescriptor.java:7516)
            at atg.adapter.gsa.GSARepository.updateItem(GSARepository.java:1075)
            at atg.commerce.order.processor.ProcSaveShippingGroupObjects.runProcess(ProcSaveShippingGroupObjects.java:249)
            at atg.service.pipeline.PipelineLink.runProcess(PipelineLink.java:255)
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:365)
            at atg.service.pipeline.PipelineChainContext.runProcess(PipelineChainContext.java:207)
            at atg.service.pipeline.PipelineManager.runProcess(PipelineManager.java:475)
            at atg.commerce.pipeline.CommercePipelineManager.runProcess(CommercePipelineManager.java:123)
            at atg.commerce.order.OrderManager.updateOrder(OrderManager.java:2910)
            at atg.commerce.fulfillment.processor.ProcUpdateOrderRepository.runProcess(ProcUpdateOrderRepository.java:122)
            at atg.service.pipeline.PipelineLink.runProcess(PipelineLink.java:255)
            at atg.service.pipeline.PipelineChain.runProcess(PipelineChain.java:365)
            at atg.service.pipeline.PipelineChainContext.runProcess(PipelineChainContext.java:207)
            at atg.service.pipeline.PipelineManager.runProcess(PipelineManager.java:475)
            at atg.commerce.fulfillment.HardgoodFulfiller.handleFulfillOrderFragment(HardgoodFulfiller.java:629)
            at atg.commerce.fulfillment.HardgoodFulfiller.handleMessage(HardgoodFulfiller.java:496)
            at atg.commerce.fulfillment.FulfillerSystem.receiveMessage(FulfillerSystem.java:476)
            at atg.dms.patchbay.ElementManager.deliverMessage(ElementManager.java:316)
            at atg.dms.patchbay.MessageLimbo.deliverDelayedMessageToMessageSink(MessageLimbo.java:1215)
            at atg.dms.patchbay.MessageLimbo.unlimboDelayedMessage(MessageLimbo.java:1174)
            at atg.dms.patchbay.MessageLimbo.unlimboMessage(MessageLimbo.java:961)
            at atg.dms.patchbay.MessageLimbo.poll(MessageLimbo.java:838)
            at atg.dms.patchbay.MessageLimbo.performScheduledTask(MessageLimbo.java:251)
            at atg.service.scheduler.ScheduledJob.runJobs(ScheduledJob.java:466)
            at atg.service.scheduler.Scheduler$2handler.run(Scheduler.java:782)
    04:41:33,934 INFO  [HardgoodFulfiller] DEBUG Finished handling message of type: atg.commerce.fulfillment.FulfillOrderFragment
    Can you please help me to resolve this.
    Thanks & Regards,
    Murali

    <Font Color='Red'>Valid Values for PlanningSystem
    </Font>
    bop_MRP
    bop_None
    <Font Color='Red'>Valid Values for ProcurementMethod
    </Font>
    bom_Buy
    Bom_Make
    <Font Color='Red'>Valid Values for GLMethod
    </Font>
    glm_WH
    glm_ItemClass
    glm_ItemLevel
    <Font Color='Red'>Valid Values for ItemType
    </Font>
    it_Items
    it_Labor
    it_Travel
    Valuation Method would be defined in the System Init > Company Details ....Basic Initialization TAB
    Default Valuation Method drop down
    Suda

  • 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 property of image through weblogic CMS

    Hii
    I want to add alt text and alt title to an existing image through Weblogic Content Management System_ . For that I have used adAltText property of ad content type.
    For that I have refer the following link
    [ http://docs.oracle.com/cd/E13155_01/wlp/docs103/cm/contentTypesCm.html#wp1096390]
    I add values to adAltText. After that clicked on cheach in.
    But while doing cheach in in Weblogic Content Management System_ . I am getting following Exception
    A RepositoryException was thrown: null
    and following is stacktrace:
    com.bea.content.virtual.workflow.WorkflowException
         at com.bea.content.virtual.workflow.PublishAction.execute(PublishAction.java:179)
         at com.bea.content.virtual.internal.server.bean.InternalWorkspaceOpsBean.handleWorkflowActions(InternalWorkspaceOpsBean.java:524)
         at com.bea.content.virtual.internal.server.bean.InternalWorkspaceOpsBean.internalCheckIn(InternalWorkspaceOpsBean.java:420)
         at com.bea.content.virtual.internal.server.bean.InternalWorkspaceOpsBean.checkIn(InternalWorkspaceOpsBean.java:343)
         at com.bea.content.virtual.internal.server.bean.WorkspaceOps_xe5vix_ELOImpl.checkIn(WorkspaceOps_xe5vix_ELOImpl.java:166)
         at com.bea.content.virtual.internal.WorkspaceOpsImpl.checkIn(WorkspaceOpsImpl.java:90)
         at com.bea.content.federated.internal.VersionManagerImpl.checkIn(VersionManagerImpl.java:239)
         at com.bea.portal.tools.content.controls.ContentVersionControlImpl.checkIn(ContentVersionControlImpl.java:165)
         at com.bea.portal.tools.content.controls.ContentVersionControlBean.checkIn(ContentVersionControlBean.java:839)
         at content.BaseContent.doCheckinLatestVersion(BaseContent.java:1127)
         at content.BaseContent.handleLibraryOpForSelectedNode(BaseContent.java:1050)
         at content.node.nodeSelected.properties.NodePropertiesController.checkInLatestVersion(NodePropertiesController.java:530)
         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:597)
         at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:879)
         at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809)
         at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478)
         at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306)
         at global.internal.AbstractBaseController.internalExecute(AbstractBaseController.java:360)
         at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336)
         at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:52)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
         at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
         at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
         at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
         at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
         at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
         at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1129)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:687)
         at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:142)
         at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:107)
         at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:111)
         at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:181)
         at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:167)
         at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:225)
         at com.bea.netuix.nf.ControlLifecycle$2.visit(ControlLifecycle.java:180)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:324)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334)
         at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:130)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
         at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352)
         at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:184)
         at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:159)
         at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388)
         at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258)
         at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:199)
         at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251)
         at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:686)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.jsptools.servlet.PagedResultServiceFilter.doFilter(PagedResultServiceFilter.java:82)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.portal.tools.servlet.http.HttpContextFilter.doFilter(HttpContextFilter.java:60)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:336)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3502)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2186)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2092)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Please reply if any one find solution on this.
    Edited by: 925203 on Apr 3, 2012 6:34 AM
    Edited by: 925203 on Apr 3, 2012 6:35 AM
    Edited by: 925203 on Apr 4, 2012 10:41 PM

    Yes, I am using custom work flow.
    I added new property for alternate text to existing content type Banner. When I try to update value for alternate text it throws error: A RepositoryException was thrown: null
    Even if i try to delete added property it throws error :
    A RepositoryException was thrown: The type Banner has existing node instances. Therefore the removal of property definition alt is not allowed.
    Is there alternate way to add property to existing content type through weblogic content management console?
    Edited by: 925203 on Apr 5, 2012 9:48 PM

  • Getting error while updating a scheduler.

    com.sunopsis.core.l: Cannot update scheduling - This agent is not a scheduler
         at com.sunopsis.dwg.dbobj.SnpAgent.computePlanning(SnpAgent.java)
         at com.sunopsis.graphical.frame.b.jg.j(jg.java)
         at com.sunopsis.graphical.frame.b.jg.g(jg.java)
         at com.sunopsis.graphical.frame.b.cr.actionPerformed(cr.java)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    i m getting this error..
    can someone guide me on this?

    Well Friend we schedule the scenarios always no matter whether its package or procedure.
    Have a look at this link - http://odiexperts.com/?p=1043 .hope this helps.
    just a remind of step considering your server is unix
    update odiparams.sh
    start agent.sh
    Create Physical , Logical Agent .
    Test physical
    Once done
    start the agent again in a terminal ,and put it in background process
    - sh agentscheduler.sh -name=<agent_name> -port=<port_no> &
    when you are saying you are not able to schedule ,can you trigger the interfaces .check for that . ?

  • Getting error while updating IT 0105

    Hi,
    I am inserting a record in Communications Infotype when user creates a IT 0006 record. I have written code in the user exit to do the job and I am using HR_INFOTYPE_OPERATION' Insert option (INS) for that. I am doing enqueue and dequeue properly.
    Now, when I try to save the new record in IT 0006, it gives me an error saying that No entry in table T591A for 0105   4.
    4 is subtype of IT0006 record which is not a subtype IT0105, thats why I am getting the error. But in my code before calling the FM I am assigning the correct subtype. here is the code from my user exit:
      IF innnn-infty = '0006' AND innnn-subty = '4' AND
        ( ipsyst-ioper = 'INS' OR ipsyst-ioper = 'MOD' ).
        CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
          EXPORTING
            prelp = innnn
          IMPORTING
            pnnnn = lx_0006.
        CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
          EXPORTING
            number = lx_0006-pernr
          IMPORTING
            return = wa_return.
        IF NOT wa_return IS INITIAL.
          WRITE:/ wa_return-message.
          EXIT.
        ENDIF.
        lx_0105-infty = '0105'.
        lx_0105-pernr = lx_0006-pernr.
        lx_0105-subty = 'CELL'.
        lx_0105-begda = lx_0006-begda.
        lx_0105-endda = lx_0006-endda.
        lx_0105-usrty = 'CELL'.
        lx_0105-usrid = lx_0006-num01.
        CALL FUNCTION 'HR_INFOTYPE_OPERATION'
               EXPORTING
                 infty            = '0105'
                 number           = lx_0006-pernr
                 subtype          = 'CELL'
                 validityend      = lx_0006-endda
                 validitybegin    = lx_0006-begda
                 record           = lx_0105
                 operation        = 'INS'
            TCLAS            = 'A'
            DIALOG_MODE      = '0'
            NOCOMMIT         =
            VIEW_IDENTIFIER  =
            SECONDARY_RECORD =
          IMPORTING
               return           = wa_return
               key              = wa_record_key.
        IF wa_return-type = 'E'.
          WRITE:/ wa_return-message.
        ENDIF.
        CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
          EXPORTING
            number = lx_0006-pernr
          IMPORTING
            return = wa_return.
        CLEAR: lx_0006, lx_0105.
      ENDIF.
    Any tips ?

    Thanks Balaji,
    I tried it but it is throwing dump, here is how I tried it in above code:
    Data: MESSAGE_HANDLER TYPE REF TO  IF_HRPA_MESSAGE_HANDLER.
      Data: is_ok TYPE BOOLE_D.
      DATA: wa_return     TYPE bapireturn1,
            wa_record_key TYPE bapipakey.
      DATA :  lx_0006       TYPE p0006,
              lx_0105       TYPE p0105.
    if innnn-infty = '0006' and innnn-subty = '4' and
       ( ipsyst-ioper = 'INS' or ipsyst-ioper = 'MOD' ).
      CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
        EXPORTING
          prelp = innnn
        IMPORTING
          pnnnn = lx_0006.
      CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
        EXPORTING
          number = lx_0006-pernr
        IMPORTING
          return = wa_return.
      IF NOT wa_return IS INITIAL.
        WRITE:/ wa_return-message.
        EXIT.
      ENDIF.
    CALL FUNCTION 'HR_ECM_INSERT_INFOTYPE'
      EXPORTING
        pnnnn                 = lx_0105
      TEXT_TAB              =
      NO_AUTH_CHECK         = ' '
        message_handler       = MESSAGE_HANDLER
      IMPORTING
      SEQNR                 =
        IS_OK                 = is_ok.
      CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
        EXPORTING
          number = lx_0006-pernr
        IMPORTING
          return = wa_return.
      break srehman.
      CLEAR: lx_0006, lx_0105.
    ENDIF.
    Now, when I create a new record in IT0006 it throws dump on the FM you suggested. It says Short text: Access via 'NULL' object reference not possible.
    and the problem line is ...
       25   CREATE DATA dref LIKE pnnnn.
       26   ASSIGN pnnnn         TO <pnnnn>.
       27   ASSIGN <pnnnn>       TO <pnnnn_typ>       CASTING.
       28   ASSIGN dref->*       TO <pnnnn_local>.
       29   ASSIGN <pnnnn_local> TO <pnnnn_local_typ> CASTING.
       30   MOVE  <pnnnn_typ>    TO <pnnnn_local_typ>.
       31   text_tab_local[] = text_tab[].
       32 *
       33   CALL METHOD cl_hrpa_masterdata_factory=>get_plain_infotype_access
       34     IMPORTING
       35       plain_infotype_access = infotype_reader.
       36 *
    >>>>>   CALL METHOD infotype_reader->insert
       38     EXPORTING
       39       tclas           = tclas_employee
       40       no_auth_check   = no_auth_check
       41       message_handler = message_handler
       42     IMPORTING
       43       is_ok           = is_ok
       44     CHANGING
       45       pnnnn           = <pnnnn_local_typ>
       46       text_tab        = text_tab_local.
       47   CHECK is_ok = true.
       48   MOVE <pnnnn_local> TO pskey.
       49   seqnr = pskey-seqnr.
       50 *
       51 ENDFUNCTION.
    do you have the code that you have used earlier, I think I am not passing right parameters to the FM. the structure that I am passing to the FM seems lacking something. Please advise.
    Thanks a lot!

  • Getting Error While Updating Schedule in agent

    Hi
    I am trying to Update Schedule in agent . i am getting below error..
    My Work Repository mode is Execution.
    Kindly reply me immediate..
    oracle.odi.runtime.agent.invocation.InvocationException: ODI-1274: Agent Exception Caused by: Could not find the AgentScheduler instance in order to process 'OdiComputePlanning' request
         at oracle.odi.runtime.agent.invocation.RemoteRuntimeAgentInvoker.invoke(RemoteRuntimeAgentInvoker.java:265)
         at oracle.odi.runtime.agent.invocation.RemoteRuntimeAgentInvoker.invokeComputePlanning(RemoteRuntimeAgentInvoker.java:365)
         at com.sunopsis.graphical.egantt.SnpGantt.updateAgent(SnpGantt.java:813)
         at com.sunopsis.graphical.egantt.SnpGantt.access$7(SnpGantt.java:783)
         at com.sunopsis.graphical.egantt.SnpGantt$6.actionPerformed(SnpGantt.java:776)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6267)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6032)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4630)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Thanks for Replying..

    I want to update the attributes for eg password of the reconciled users from the OIMI assume that you talking about Target only.
    Do you wanna say that you have reconciled one account in OIM but when you change password in OIM tehn that password doesn't get updated in target resource.
    Have you configures Change User Password task and does you have entry for the same task in Trigger lookup ?
    What are the steps you following for testing your scenario ?

  • Getting errors while updating links in Indesign document using javascript

    Hi,
    We are updating the links in InDesign document using javascript. After running the script, we are getting the below errors in Adobe InDesign CC debug.
    When closing the document for first time we are getting the below mentioned errors,
    ASSERT 'fRefCount == 0' in c:\development\citius\source\components\database3\revisioneddatabase\SaLRICache.tpp at line 230 failed.
    Erased item list not empty at block delete time
    blockUID = 10486786 not freed
    Internal error: 904 items were leaked!
    After that we are opening the same document for second time, then we are getting the below mentioned errors,
    ASSERT 'ts_DBPubFile->PlacementUIDIsAvailable(uid)' in c:\development\citius\source\components\database3\revisioneddatabase\SaLRIUtils.tpp at line 195 failed.
    DB failed to create UID!
    ASSERT 'this->FindInIDRangeList(fLastCreatedBlockUID) >= 0' in c:\development\citius\source\components\database3\revisioneddatabase\SaLRICache.tpp at line 476 failed.
    ASSERT 'fLastCreatedBlockUID != kInvalidUID && fLastCreatedItemID != 0' in c:\development\citius\source\components\database3\revisioneddatabase\SaLRICache.tpp at line 467 failed.
    ASSERT '(SaLRIUtils<SnapshotID , SnapshotInfo>::ts_DB)->IsValidUID(itemUID)' in ..\..\..\source\components\database3\revisioneddatabase\SnapshotCache.cpp at line 55 failed.
    Please help us to solve this error in InDesign debug.
    Thanks,
    Vimala L

    You're probably better off raising this in the SDK forum.

Maybe you are looking for

  • I will pay for who can help me with this applet

    Hi!, sorry for my english, im spanish. I have a big problem with an applet: I�ve make an applet that sends files to a FTP Server with a progress bar. Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it cra

  • Dreamweaver CS5.5 crashing on launch

    We have a user who is having Dreamweaver Crash on a Windows XP (32 bit) machine.  When she launches the application she sees the Dreamweaver splash screen; however, when it reaches "Initializing Extensions" the application just hangs.  We have let it

  • Averaging 3D array into 1D array.

    Hi, I have a 3D array containing XY points of several loops and i am trying to average the data points of my array into a 1D array that should contain 1Loop with XY points. Can someone help me out? Thanks  Mutah Qui ose vaincra. Solved! Go to Solutio

  • Adobe Illustrator on my MBP

    I was thinking about buying Adobe Illustrator CS2 for my MBP as I found an extremely good student rate for it. I know it's not the Universal yet and will not run to full capacity due to Rosetta. But my question is - is it unusable or just slightly sl

  • Flash player 11.5 updated using ie8 and firefox wont work Youtube

    Flash player 11.5 updated using ie8 and firefox wont work Youtube Its impossible because after the update i researched and did alot to downgrade and it wont work. Only domain administrators can play youtube movies. the other simple users cannot play