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

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

  • 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

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

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

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

  • Getting error while updateing the URL under connection pool, can anyone help ?

    Our IP for database has changed and we are trying to update it in URL under the connection pool. We are getting below error :
    oracle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException: Error setting attributes on MBean: oc4j:j2eeType=JDBCResource,name="moPool",J2EEApplication=default,J2EEServer=standalone at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.setAttributes(SimpleInstanceMBeanServerDelegate.java:873) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.setAttributes(LocalizationFilterMBeanServer.java:552) at oracle.sysman.ias.studio.jmx.spi.JMXConnectorImpl.setAttributes(JMXConnectorImpl.java:384) at oracle.sysman.ias.studio.sdk.SDKJMXUtil.setAttributeValues(SDKJMXUtil.java:590) at oracle.sysman.ias.studio.oc4j.jdbc.JMXCPAdminBean.editConnectionPool(JMXCPAdminBean.java:109) at oracle.sysman.ias.studio.oc4j.jdbc.CPHelper.editConnectionPool(CPHelper.java:252) at oracle.sysman.ias.studio.oc4j.jdbc.CPHelper.handleEvent(CPHelper.java:167) at oracle.sysman.ias.studio.sdk.AbstractController.handleEvent(AbstractController.java:769) at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:378) at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:765) at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:283) at oracle.sysman.ias.studio.app.StudioConsole.doGet(StudioConsole.java:385) at oracle.cabo.servlet.UIXServlet.doPost(Unknown Source) 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.sysman.ias.studio.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:75) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at oracle.sysman.ias.studio.app.MultipleJVMFilter.doFilter(MultipleJVMFilter.java:85) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.PostLogonFilter.doFilter(PostLogonFilter.java:80) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.ShortHostnameRedirectFilter.doFilter(ShortHostnameRedirectFilter.java:68) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:642) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458) 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) Caused by: oracle.oc4j.admin.jmx.shared.exceptions.JMXClusterRuntimeException: Error setting attributes on MBean: oc4j:j2eeType=JDBCResource,name="moPool",J2EEApplication=default,J2EEServer=standalone at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.setAttributes(SimpleInstanceMBeanServerDelegate.java:827) ... 31 more ---- Embedded exception oracle.oc4j.admin.jmx.shared.exceptions.JMXClusterRuntimeException: Error setting attributes on MBean: oc4j:j2eeType=JDBCResource,name="moPool",J2EEApplication=default,J2EEServer=standalone at oracle.oc4j.admin.jmx.distributed.SimpleInstanceMBeanServerDelegate.setAttributes(SimpleInstanceMBeanServerDelegate.java:827) at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.setAttributes(LocalizationFilterMBeanServer.java:552) at oracle.sysman.ias.studio.jmx.spi.JMXConnectorImpl.setAttributes(JMXConnectorImpl.java:384) at oracle.sysman.ias.studio.sdk.SDKJMXUtil.setAttributeValues(SDKJMXUtil.java:590) at oracle.sysman.ias.studio.oc4j.jdbc.JMXCPAdminBean.editConnectionPool(JMXCPAdminBean.java:109) at oracle.sysman.ias.studio.oc4j.jdbc.CPHelper.editConnectionPool(CPHelper.java:252) at oracle.sysman.ias.studio.oc4j.jdbc.CPHelper.handleEvent(CPHelper.java:167) at oracle.sysman.ias.studio.sdk.AbstractController.handleEvent(AbstractController.java:769) at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:378) at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:765) at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:283) at oracle.sysman.ias.studio.app.StudioConsole.doGet(StudioConsole.java:385) at oracle.cabo.servlet.UIXServlet.doPost(Unknown Source) 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.sysman.ias.studio.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:75) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at oracle.sysman.ias.studio.app.MultipleJVMFilter.doFilter(MultipleJVMFilter.java:85) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.PostLogonFilter.doFilter(PostLogonFilter.java:80) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17) at oracle.sysman.ias.studio.app.ShortHostnameRedirectFilter.doFilter(ShortHostnameRedirectFilter.java:68) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:642) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458) 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)
    Can anyone please help to know why this error occurs ? Thanks in advance.

    Hi chandra
    i am trying to get the same result by using sql script and CE functions.i have written the following code
    select A."PRODUCTID",
           E."TEXT" as "PRODUCTNAME",
           C."COUNTRY",
           D."DELIVERYDATE",
           Sum(D."GROSSAMOUNT") as "GROSSAMOUNT"
           from "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.MasterData.Products" as A     
           inner join "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.MasterData.BusinessPartner" as B
           on A."SUPPLIERID" = B."PARTNERID"      
           inner join "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.MasterData.Addresses" as C
           on B."ADDRESSID" = C."ADDRESSID"
           inner join "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.Purchase.Item" as D
           on A."PRODUCTID" = D."PRODUCTID"
           inner join "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.Util.Texts" as E
           on A."NAMEID" = E."TEXTID"
           GROUP BY A."PRODUCTID",E."TEXT",C."COUNTRY",D."DELIVERYDATE"; 
    this is working fine but i want to split the grossamount based on current year and last year.Any idea how to do this
    In calculation view using script can we use if and case statements?

  • 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 my profile

    When I tried to update my profile as follows
    1- log into otn.oracle.com.
    2- Click on update your Oracle Web Account with your OPN pin
    3- CLick on Register or update your Oracle Web Account, inserting your company 12 digit PIN.
    4- Insert my company 12 digit pin # and click on Continue
    I got the following error message.
    We're sorry. There was a problem in processing your request.

    @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

  • Getting error while updating personal info

    Hii,
    thanks in advance.....
    I am unable to update my payment information.....whenevr i used to change it....receiving an error message like "this is not a valid payment info"
    previously the info is filled with a U.S resident .....
    Now the mobile is using in INDIA...so that i want to access it with local info
    Please help me
    Regards,
    KavyaSri

    Hello there Kavyasri,
    This article outlines how to change the country associated with your Apple ID. The country set there, and the country you have billing info from must match.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    Change your iTunes Store country
    Sign in to the account for the iTunes Store region you'd like to use. Tap Settings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region.
    Follow the onscreen process to change your region, agree to the terms and conditions for the region if necessary, and then change your billing information.
    Take care,
    Sterling

Maybe you are looking for

  • Nesting xml in Oracle 8i

    How to generate nested xml/ complex xml in Oracle 8i using 8i packages dbms_xmlquery or xmlgen . The xml might be looked like this.. if any body have idea then pls let me know. i am trying to write Stored procedure on that i am using query like selec

  • Message determination and Partner function LS (Logical system) for PO

    Hi, I have worked in the past with vendors (VN) as partner roles in a PO, with the message to create an EDI outpout to Partner Type: LI (Vendor), and this works succesfully. Now, the idea was to use in EDI, a Partner Type: LS (Logical system) as a re

  • FlexUnit 4.1.0-8 Error 1046

    Hi, I'm using Eclipse Gallieo on Mac OS 10.6.8 with the Flash Builder 4 plugin.  My project is using the Flex 4.5.0 SDK and I recently updated FlexUnit from 4.0 to 4.1.0-8.  Now when I compile I get four errors: 1046: Type was not found or was not a

  • How to get my list?

    Hello all, I have a question about printing a list on my JSP. I create a list with a tree like view. I have done this and when I do System.out.println() on my class where I run the sql statement, he shows the actual list. But now I most post this thr

  • How to split out a set of data????

    package mitsim_converter; import java.io.*;                            // For input & output classes import java.util.*;                          // For the Date class public class testgod { public static void ReadCoFile(String Co_inputFile, String C