Primevera 6:Installation guide and Integration with Oracle BPM 11g

Hi All,
I working on BPM 11g. I want to integrate Primevera 6 v8.2 or higher version of Primevera with BPM 11g can any one help me out in this issue.I am unable to understand where to start from what i have to install first.
I have already working environment on BPM 11g now to integrate Primevera what i have start with.Please help me out to move forward.If one has worked on this who has any screenshots please send me

If your company has a maintenance contract with Oracle, you should be able to find more information in the Knowledge Base.

Similar Messages

  • JSP Integration with Oracle BPM 11g

    Hi,
    Could you let me know, How to Integrate JSP with Oracle BPM 11g.
    Thanks

    Thanks for the information.
    But i was looking at how to integrate JSP with oracle bpm 11g.
    IN Oracle BPM 10gR3, We will integrate jsp in screenflow. In 11g, I am not sure how will we integrate JSP.
    Could you please let me know how to integrate JSP with BPM 11g. Thanks!.

  • Mapping LDAP Role in Building Your First Process with Oracle BPM 11g

    I'm working on "Building Your First Process with Oracle BPM 11g" I'm at the end of step where assigns user for the requester. The problem is in identity lookup, "Realm" is empty for Remote_WLServer.
    Servers are up and running. Demo user community has been loaded - I can see the list of users and groups in the administration server under myrealm. We haven't done much since SOA suite 11g installation. I'm probably the first one who uses this. I wonder we have a missing set up? Can you me what's missing? Appreciate your help in advance.

    I get this error message when I clicked gear icon.
    "Server exception is : Connection refused from server"
    Here is the result of testing Remove_WLServer connection. Does this cause the issue?
    Testing JSR-160 Runtime ... failed.
    Cannot establish connection.
    Testing JSR-160 DomainRuntime ... skipped.
    Testing JSR-88 ... skipped.
    Testing JSR-88-LOCAL ... skipped.
    Testing JNDI ... skipped.
    Testing JSR-160 Edit ... skipped.
    Testing HTTP ... success.
    Testing Server MBeans Model ... skipped.
    Testing HTTP Authentication ... success.
    2 of 9 tests successful.
    I have installed JDeveloper 9i, 10g, and 11g in my laptop. SOA is installed on linux.

  • How to install and work with oracle webcenter 11g

    Hi
    Will please guide how to install and work on oracle webcenter11g, i am fresher in oracle that's why. so please guide me
    Regards
    Rajesh P

    In order to create and develop a webcenter portal application, you only need to install JDeveloper and download the WeBCenter extensions. That's true.
    But this install does not include the WebCenter services like dicussions, document services, analytics,... If you want to use these and integrate them in your portal, then you would need to install the suite as described on my blog.

  • WAPI and PAPI with Oracle BPM 10.3.1

    I was having the problem with WAPI so I switched to PAPI and I am having the same problem anything wrong I am doing
    I am using the PAPI program to connect and start the instance and I keep on getting the Instance not found exception. Although the process did get executed
    here is the program
    mport fuego.papi.CommunicationException;
    import fuego.papi.InstanceInfo;
    import fuego.papi.ProcessService;
    import fuego.papi.ProcessServiceSession;
    import fuego.papi.OperationException;
    import fuego.papi.Arguments;
    import java.util.Properties;
    import fuego.papi.collections.InstanceInfoList;
    public class a{
    public static void main(String argv[]){
    Properties config = new Properties();
    config.setProperty(ProcessService.DIRECTORY_ID, "default");
    config.setProperty(ProcessService.PROJECT_PATH, "c:/Documents and Settings/test/OracleBPMWorkspace/Utility");
    try {
    ProcessService processService = ProcessService.create(config);
    ProcessServiceSession session = processService.createSession("test","test", "host");
    Arguments a = Arguments.create();
    a.putArgument("inp1", "TEST");
    InstanceInfo ii = session.processCreateInstance("/Process1","BeginIn",a);
    InstanceInfoList il = session.processGetInstances("/Proces1");
    System.out.println("THE LENGTH="+il.size());
    System.out.println("THE INSTANCEID="+il.getId());
    } catch (Exception e) {e.printStackTrace();}
    exception is
    rocessing the synchronization information, instance '/Process1#Default-1.0/6/0' was terminated.
    fuego.papi.exception.InstanceNotFoundException: Instance '/Process1#Default-1.0/6/0' was not found.
         at fuego.server.persistence.jdbc.JdbcProcessInstancePersMgr.load(JdbcProcessInstancePersMgr.java:1639)
         at fuego.server.persistence.Persistence.loadInstance(Persistence.java:834)
         at fuego.server.AbstractInstanceService.readInstance(AbstractInstanceService.java:724)
         at fuego.fengine.CachedInstanceService.get(CachedInstanceService.java:178)
         at fuego.server.execution.EngineExecutionContext.getInstance(EngineExecutionContext.java:1635)
         at fuego.server.execution.EngineExecutionContext.getInstance(EngineExecutionContext.java:612)
         at fuego.server.AbstractProcessBean$24.execute(AbstractProcessBean.java:1333)
         at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:304)
         at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:470)
         at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:551)
         at fuego.transaction.TransactionAction.start(TransactionAction.java:212)
         at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:123)
         at fuego.server.execution.DefaultEngineExecution.executeImmediateNotLocking(DefaultEngineExecution.java:168)
         at fuego.server.execution.EngineExecution.executeImmediateNotLocking(EngineExecution.java:77)
         at fuego.server.AbstractProcessBean.getInstance(AbstractProcessBean.java:1308)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.lang.JavaClass.invokeMethod(JavaClass.java:1410)
         at fuego.lang.JavaObject.invoke(JavaObject.java:227)
         at fuego.component.Message.process(Message.java:585)
         at fuego.component.ExecutionThread.processMessage(ExecutionThread.java:780)
         at fuego.component.ExecutionThread.processBatch(ExecutionThread.java:755)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:142)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:134)
         at fuego.fengine.FEngineProcessBean.processBatch(FEngineProcessBean.java:244)
         at fuego.component.ExecutionThread.work(ExecutionThread.java:839)
         at fuego.component.ExecutionThread.run(ExecutionThread.java:408)
         at fuego.component.CustomExecution.next(CustomExecution.java:176)
         at fuego.component.ExecutorClient.invoke(ExecutorClient.java:117)
         at fuego.papi.impl.rmi.ProcessControlProxy.getInstance(ProcessControlProxy.java:64)
         at fuego.papi.impl.rmi.ProcessControlProxyWrapper.getInstance(ProcessControlProxyWrapper.java:59)
         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 fuego.papi.impl.AbstractProcessControlHandler.invokeInternal(AbstractProcessControlHandler.java:72)
         at fuego.papi.impl.rmi.RMIProcessControlHandler.invoke(RMIProcessControlHandler.java:165)
         at $Proxy24.getInstance(Unknown Source)
         at fuego.papi.impl.ProcessInstanceOperation.instanceIdToInfo(ProcessInstanceOperation.java:1012)
         at fuego.papi.impl.ProcessInstanceOperation.createInstance(ProcessInstanceOperation.java:343)
         at fuego.papi.impl.ProcessServiceSessionImpl.processCreateInstance(ProcessServiceSessionImpl.java:3174)
         at a.main(a.java:20)

    Hi,
    For Oracle BPM 10g, I believe this is the PAPI-WS wsdl URL:
    http://<machineName>:<the port for the WorkSpace>/papiws/PapiWebServiceEndpoint?wsdland I believe this is the process specific web service URL for Studio:
    http://<machineName>:9000/albpmServices/<YourProjectName>/ws/<YourProcessName>ServiceListener?wsdl=truefor Enterprise, I believe you can find the process specific web service WSDL by going to this URL from a browser:
    http://<machineName>:<port for the Workspace or the application server>/albpmServices/<Enterprise Engine’s name>/ws Hope this helps,
    Dan

  • Error While Building my First Process with Oracle BPM 11g

    Hi All,
    I am new to Oralce BPM. While Working through the BPM from http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/obpm/11g/r1/firstProcess/firstprocess_obpm11g.htm
    Am getting the below error while creating form for the Human interaction. Can anyone help on this?
    Thanks in Advance.
    SEVERE: Exception in text sync! model=oracle.bali.xml.dom.buffer.BufferDomModel@1940a5a change=AttrAddedChange: title@[document] event=oracle.xml.parser.v2.XMLDOMMutationEvent@33d0dc
    java.lang.IllegalStateException: Parent element of attribute oracle.xml.parser.v2.XMLAttr@a9e374 not found along given path in document oracle.xml.parser.v2.XMLDocument@6591f
         at oracle.bali.xml.dom.changes.AbstractAttrChange.getOwnerElement(AbstractAttrChange.java:54)
         at oracle.bali.xml.dom.buffer.SyncToTextDomChangeHandler._getOwnerElement(SyncToTextDomChangeHandler.java:1460)
         at oracle.bali.xml.dom.buffer.SyncToTextDomChangeHandler.handleAttrAddedChange(SyncToTextDomChangeHandler.java:74)
         at oracle.bali.xml.dom.changes.AttrAddedChange.process(AttrAddedChange.java:21)
         at oracle.bali.xml.dom.buffer.BufferDomTextSync.handleChange(BufferDomTextSync.java:48)
         at oracle.bali.xml.dom.buffer.BufferDomModel.handleUncommittedMutationEventHook(BufferDomModel.java:932)
         at oracle.bali.xml.dom.impl.DomModelImpl.handleUncommittedMutationEventHook(DomModelImpl.java:1324)
         at oracle.bali.xml.dom.impl.ChildDomModelTransaction.handleMutationEventHook(ChildDomModelTransaction.java:237)
         at oracle.bali.xml.dom.impl.DomModelTransaction.handleMutationEvent(DomModelTransaction.java:499)
         at oracle.bali.xml.dom.impl.DomModelImpl$DocumentChangeListener.handleEvent(DomModelImpl.java:1787)
         at oracle.xml.parser.v2.XMLNode.dispatchEvent(XMLNode.java:1321)
         at oracle.xml.parser.v2.XMLNode.fireDOMMutationEvent(XMLNode.java:3611)
         at oracle.xml.parser.v2.XMLElement.xdkAddAttrNode(XMLElement.java:3230)
         at oracle.xml.parser.v2.XMLElement.xdkAddAttr(XMLElement.java:3058)
         at oracle.xml.parser.v2.XMLElement.setAttribute(XMLElement.java:913)
         at oracle.tip.tools.ide.workflow.datbindpatterns.UITaskFlowUtil.addTitle(UITaskFlowUtil.java:153)
         at oracle.tip.tools.ide.workflow.datbindpatterns.UITaskFlowUtil.addJavaScripts(UITaskFlowUtil.java:161)
         at oracle.tip.tools.ide.workflow.datbindpatterns.binder.TaskActionbarBinder.bind(TaskActionbarBinder.java:189)
         at oracle.tip.tools.ide.workflow.datbindpatterns.binder.TaskActionsBinder.bind(TaskActionsBinder.java:50)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._bind(XmlBasedCreatorInfo.java:1058)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:455)
         at oracle.adfdt.view.common.binding.standalone.Widget.create(Widget.java:211)
         at oracle.adfdt.view.common.binding.standalone.Widget.create(Widget.java:151)
         at oracle.adfdt.view.common.binding.creator.CreationContext.createDocumentFragmentFromInclude(CreationContext.java:237)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1122)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:435)
         at oracle.adfdt.view.common.binding.standalone.Widget.create(Widget.java:211)
         at oracle.adfdt.view.common.binding.standalone.Widget.create(Widget.java:151)
         at oracle.adfdt.view.common.binding.creator.CreationContext.createDocumentFragmentFromInclude(CreationContext.java:237)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1122)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:435)
         at oracle.adfdtinternal.view.common.binding.datatransfer.ADFDocumentFragmentCreatorInfo.createDocumentFragment(ADFDocumentFragmentCreatorInfo.java:99)
         at oracle.adfdtinternal.view.common.binding.operation.CreateOperation.apply(CreateOperation.java:112)
         at oracle.bali.xml.model.AbstractModel.performOperationAction(AbstractModel.java:274)
         at oracle.bali.xml.model.datatransfer.operation.PerformOperationAction.actionPerformed(PerformOperationAction.java:36)
         at oracle.bali.xml.share.ActionProxy.actionPerformed(ActionProxy.java:47)
         at oracle.bali.xml.gui.swing.dnd.DropMenuInvoker$CleanupProxy.access$201(DropMenuInvoker.java:234)
         at oracle.bali.xml.gui.swing.dnd.DropMenuInvoker$CleanupProxy$1.run(DropMenuInvoker.java:254)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
         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)
    java.lang.IllegalStateException: Parent element of attribute oracle.xml.parser.v2.XMLAttr@a9e374 not found along given path in document oracle.xml.parser.v2.XMLDocument@6591f
    o.bali.xml.dom.changes.AbstractAttrChange.getOwnerElement(AbstractAttrChange.java:54)
    o.bali.xml.dom.buffer.SyncToTextDomChangeHandler._getOwnerElement(SyncToTextDomChangeHandler.java:1460)
    o.bali.xml.dom.buffer.SyncToTextDomChangeHandler.handleAttrAddedChange(SyncToTextDomChangeHandler.java:74)
    o.bali.xml.dom.changes.AttrAddedChange.process(AttrAddedChange.java:21)
    o.bali.xml.dom.buffer.BufferDomTextSync.handleChange(BufferDomTextSync.java:48)
    o.bali.xml.dom.buffer.BufferDomModel.handleUncommittedMutationEventHook(BufferDomModel.java:932)
    o.bali.xml.dom.impl.DomModelImpl.handleUncommittedMutationEventHook(DomModelImpl.java:1324)
    o.bali.xml.dom.impl.ChildDomModelTransaction.handleMutationEventHook(ChildDomModelTransaction.java:237)
    o.bali.xml.dom.impl.DomModelTransaction.handleMutationEvent(DomModelTransaction.java:499)
    o.bali.xml.dom.impl.DomModelImpl$DocumentChangeListener.handleEvent(DomModelImpl.java:1787)
    o.xml.parser.v2.XMLNode.dispatchEvent(XMLNode.java:1321)
    o.xml.parser.v2.XMLNode.fireDOMMutationEvent(XMLNode.java:3611)
    o.xml.parser.v2.XMLElement.xdkAddAttrNode(XMLElement.java:3230)
    o.xml.parser.v2.XMLElement.xdkAddAttr(XMLElement.java:3058)
    o.xml.parser.v2.XMLElement.setAttribute(XMLElement.java:913)
    o.tip.tools.ide.workflow.datbindpatterns.UITaskFlowUtil.addTitle(UITaskFlowUtil.java:153)
    o.tip.tools.ide.workflow.datbindpatterns.UITaskFlowUtil.addJavaScripts(UITaskFlowUtil.java:161)
    o.tip.tools.ide.workflow.datbindpatterns.binder.TaskActionbarBinder.bind(TaskActionbarBinder.java:189)
    o.tip.tools.ide.workflow.datbindpatterns.binder.TaskActionsBinder.bind(TaskActionsBinder.java:50)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._bind(XmlBasedCreatorInfo.java:1058)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:455)
    o.adfdt.view.common.binding.standalone.Widget.create(Widget.java:211)
    o.adfdt.view.common.binding.standalone.Widget.create(Widget.java:151)
    o.adfdt.view.common.binding.creator.CreationContext.createDocumentFragmentFromInclude(CreationContext.java:237)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1122)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:435)
    o.adfdt.view.common.binding.standalone.Widget.create(Widget.java:211)
    o.adfdt.view.common.binding.standalone.Widget.create(Widget.java:151)
    o.adfdt.view.common.binding.creator.CreationContext.createDocumentFragmentFromInclude(CreationContext.java:237)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1122)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:435)
    o.adfdtinternal.view.common.binding.datatransfer.ADFDocumentFragmentCreatorInfo.createDocumentFragment(ADFDocumentFragmentCreatorInfo.java:99)
    o.adfdtinternal.view.common.binding.operation.CreateOperation.apply(CreateOperation.java:112)
    o.bali.xml.model.AbstractModel.performOperationAction(AbstractModel.java:274)
    o.bali.xml.model.datatransfer.operation.PerformOperationAction.actionPerformed(PerformOperationAction.java:36)
    o.bali.xml.share.ActionProxy.actionPerformed(ActionProxy.java:47)
    o.bali.xml.gui.swing.dnd.DropMenuInvoker$CleanupProxy.access$201(DropMenuInvoker.java:234)
    o.bali.xml.gui.swing.dnd.DropMenuInvoker$CleanupProxy$1.run(DropMenuInvoker.java:254)
    j.a.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    j.a.EventQueue.dispatchEventImpl(EventQueue.java:642)
    j.a.EventQueue.access$000(EventQueue.java:85)
    j.a.EventQueue$1.run(EventQueue.java:603)
    j.a.EventQueue$1.run(EventQueue.java:601)
    j.security.AccessController.doPrivileged(Native Method)
    j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
    j.a.EventQueue.dispatchEvent(EventQueue.java:612)
    j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    j.a.EventDispatchThread.run(EventDispatchThread.java:122)
    Jun 5, 2013 11:53:51 AM oracle.bali.xml.dom.impl.DomModelImpl$DocumentChangeListener handleEvent
    SEVERE: BaseDomModel$DocumentChangeListener
    java.lang.IllegalStateException: No return buffer change! domChange=AttrAddedChange: title@[document]
         at oracle.bali.xml.dom.buffer.TextSyncContext.getBufferChange(TextSyncContext.java:155)
         at oracle.bali.xml.dom.buffer.BufferDomTextSync.handleChange(BufferDomTextSync.java:66)
         at oracle.bali.xml.dom.buffer.BufferDomModel.handleUncommittedMutationEventHook(BufferDomModel.java:932)
         at oracle.bali.xml.dom.impl.DomModelImpl.handleUncommittedMutationEventHook(DomModelImpl.java:1324)
         at oracle.bali.xml.dom.impl.ChildDomModelTransaction.handleMutationEventHook(ChildDomModelTransaction.java:237)
         at oracle.bali.xml.dom.impl.DomModelTransaction.handleMutationEvent(DomModelTransaction.java:499)
         at oracle.bali.xml.dom.impl.DomModelImpl$DocumentChangeListener.handleEvent(DomModelImpl.java:1787)
         at oracle.xml.parser.v2.XMLNode.dispatchEvent(XMLNode.java:1321)
         at oracle.xml.parser.v2.XMLNode.fireDOMMutationEvent(XMLNode.java:3611)
         at oracle.xml.parser.v2.XMLElement.xdkAddAttrNode(XMLElement.java:3230)
         at oracle.xml.parser.v2.XMLElement.xdkAddAttr(XMLElement.java:3058)
         at oracle.xml.parser.v2.XMLElement.setAttribute(XMLElement.java:913)
         at oracle.tip.tools.ide.workflow.datbindpatterns.UITaskFlowUtil.addTitle(UITaskFlowUtil.java:153)
         at oracle.tip.tools.ide.workflow.datbindpatterns.UITaskFlowUtil.addJavaScripts(UITaskFlowUtil.java:161)
         at oracle.tip.tools.ide.workflow.datbindpatterns.binder.TaskActionbarBinder.bind(TaskActionbarBinder.java:189)
         at oracle.tip.tools.ide.workflow.datbindpatterns.binder.TaskActionsBinder.bind(TaskActionsBinder.java:50)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._bind(XmlBasedCreatorInfo.java:1058)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:455)
         at oracle.adfdt.view.common.binding.standalone.Widget.create(Widget.java:211)
         at oracle.adfdt.view.common.binding.standalone.Widget.create(Widget.java:151)
         at oracle.adfdt.view.common.binding.creator.CreationContext.createDocumentFragmentFromInclude(CreationContext.java:237)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1122)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:435)
         at oracle.adfdt.view.common.binding.standalone.Widget.create(Widget.java:211)
         at oracle.adfdt.view.common.binding.standalone.Widget.create(Widget.java:151)
         at oracle.adfdt.view.common.binding.creator.CreationContext.createDocumentFragmentFromInclude(CreationContext.java:237)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1122)
         at oracle.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:435)
         at oracle.adfdtinternal.view.common.binding.datatransfer.ADFDocumentFragmentCreatorInfo.createDocumentFragment(ADFDocumentFragmentCreatorInfo.java:99)
         at oracle.adfdtinternal.view.common.binding.operation.CreateOperation.apply(CreateOperation.java:112)
         at oracle.bali.xml.model.AbstractModel.performOperationAction(AbstractModel.java:274)
         at oracle.bali.xml.model.datatransfer.operation.PerformOperationAction.actionPerformed(PerformOperationAction.java:36)
         at oracle.bali.xml.share.ActionProxy.actionPerformed(ActionProxy.java:47)
         at oracle.bali.xml.gui.swing.dnd.DropMenuInvoker$CleanupProxy.access$201(DropMenuInvoker.java:234)
         at oracle.bali.xml.gui.swing.dnd.DropMenuInvoker$CleanupProxy$1.run(DropMenuInvoker.java:254)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
         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)
    java.lang.IllegalStateException: No return buffer change! domChange=AttrAddedChange: title@[document]
    o.bali.xml.dom.buffer.TextSyncContext.getBufferChange(TextSyncContext.java:155)
    o.bali.xml.dom.buffer.BufferDomTextSync.handleChange(BufferDomTextSync.java:66)
    o.bali.xml.dom.buffer.BufferDomModel.handleUncommittedMutationEventHook(BufferDomModel.java:932)
    o.bali.xml.dom.impl.DomModelImpl.handleUncommittedMutationEventHook(DomModelImpl.java:1324)
    o.bali.xml.dom.impl.ChildDomModelTransaction.handleMutationEventHook(ChildDomModelTransaction.java:237)
    o.bali.xml.dom.impl.DomModelTransaction.handleMutationEvent(DomModelTransaction.java:499)
    o.bali.xml.dom.impl.DomModelImpl$DocumentChangeListener.handleEvent(DomModelImpl.java:1787)
    o.xml.parser.v2.XMLNode.dispatchEvent(XMLNode.java:1321)
    o.xml.parser.v2.XMLNode.fireDOMMutationEvent(XMLNode.java:3611)
    o.xml.parser.v2.XMLElement.xdkAddAttrNode(XMLElement.java:3230)
    o.xml.parser.v2.XMLElement.xdkAddAttr(XMLElement.java:3058)
    o.xml.parser.v2.XMLElement.setAttribute(XMLElement.java:913)
    o.tip.tools.ide.workflow.datbindpatterns.UITaskFlowUtil.addTitle(UITaskFlowUtil.java:153)
    o.tip.tools.ide.workflow.datbindpatterns.UITaskFlowUtil.addJavaScripts(UITaskFlowUtil.java:161)
    o.tip.tools.ide.workflow.datbindpatterns.binder.TaskActionbarBinder.bind(TaskActionbarBinder.java:189)
    o.tip.tools.ide.workflow.datbindpatterns.binder.TaskActionsBinder.bind(TaskActionsBinder.java:50)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._bind(XmlBasedCreatorInfo.java:1058)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:455)
    o.adfdt.view.common.binding.standalone.Widget.create(Widget.java:211)
    o.adfdt.view.common.binding.standalone.Widget.create(Widget.java:151)
    o.adfdt.view.common.binding.creator.CreationContext.createDocumentFragmentFromInclude(CreationContext.java:237)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1122)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1149)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:435)
    o.adfdt.view.common.binding.standalone.Widget.create(Widget.java:211)
    o.adfdt.view.common.binding.standalone.Widget.create(Widget.java:151)
    o.adfdt.view.common.binding.creator.CreationContext.createDocumentFragmentFromInclude(CreationContext.java:237)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo._runDeferredInclusions(XmlBasedCreatorInfo.java:1122)
    o.adfdtinternal.view.common.binding.creator.XmlBasedCreatorInfo.create(XmlBasedCreatorInfo.java:435)
    o.adfdtinternal.view.common.binding.datatransfer.ADFDocumentFragmentCreatorInfo.createDocumentFragment(ADFDocumentFragmentCreatorInfo.java:99)
    o.adfdtinternal.view.common.binding.operation.CreateOperation.apply(CreateOperation.java:112)
    o.bali.xml.model.AbstractModel.performOperationAction(AbstractModel.java:274)
    o.bali.xml.model.datatransfer.operation.PerformOperationAction.actionPerformed(PerformOperationAction.java:36)
    o.bali.xml.share.ActionProxy.actionPerformed(ActionProxy.java:47)
    o.bali.xml.gui.swing.dnd.DropMenuInvoker$CleanupProxy.access$201(DropMenuInvoker.java:234)
    o.bali.xml.gui.swing.dnd.DropMenuInvoker$CleanupProxy$1.run(DropMenuInvoker.java:254)
    j.a.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    j.a.EventQueue.dispatchEventImpl(EventQueue.java:642)
    j.a.EventQueue.access$000(EventQueue.java:85)
    j.a.EventQueue$1.run(EventQueue.java:603)
    j.a.EventQueue$1.run(EventQueue.java:601)
    j.security.AccessController.doPrivileged(Native Method)
    j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
    j.a.EventQueue.dispatchEvent(EventQueue.java:612)
    j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    j.a.EventDispatchThread.run(EventDispatchThread.java:122)

    You may need to upgrade Jdeveloper to the latest 11.1.1.6.5 version (get it from support or edelivery) or better still to 11.1.1.7. There were some bugs in previous releases especially on the human workflow edit screens. Right now there is nothing much you can do except hit continue and then restart Jdeveloper - but again I think you might still see that error.

  • Two issues with oracle BPM 11g PS4

    Greetings.
    Im actually developing a series of processes in the new BPM Suite but im facing some issues that are really affecting the desired outputs of the project regarding to the time of developement:
    1. I created data object based on a XSD, but when a need to make transformations in the BPMN process this object does not appear in the sources that you can add for the transformation. Is there something wrong with the XSD maybe ? (I tested in bpel process an i can create varialbles for transformations). (See the XSD type below)
    2. I have two human tasks, both of them with a custom implementation using the feature "ADF Task Flow based on human task". For the second manual activity, the data control that gets generated dissapears from my application (is not in the data controls section) and there is no way the get it back. Is this a bug ?
    Hope someone can help.
    Thanks in advance.
    Here the XSD im using:
    <?xml version= '1.0' encoding= 'UTF-8' ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.pihssehocol.com" targetNamespace="http://www.pihssehocol.com"
    elementFormDefault="qualified">
    <xsd:complexType name="AlertaType">
    <xsd:sequence>
    <xsd:element name="id" nillable="true" type="xsd:int"/>
    <xsd:element name="tipoAlerta" nillable="true" type="xsd:string"/>
    <xsd:element name="esTipoGestionDeInformacion" nillable="true" type="xsd:int"/>
    <xsd:element name="estado" nillable="true" type="xsd:string"/>
    <xsd:element name="idTipoAlerta" nillable="true" type="xsd:int"/>
    <xsd:element name="fechaReporte" nillable="true" type="xsd:date"/>
    <xsd:element name="fechaRecepcion" nillable="true" type="xsd:date"/>
    <xsd:element name="fechaCierre" nillable="true" type="xsd:date"/>
    <xsd:sequence>
    <xsd:element name="notificaciones" nillable="true" type="NotificacionType" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:element name="descripcion" nillable="true" type="xsd:string"/>
    <xsd:sequence>
    <xsd:element name="documentos" nillable="true" type="DocumentoType" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:element name="fuente" nillable="true" type="xsd:string"/>
    <xsd:element name="idFuente" nillable="true" type="xsd:int"/>
    <xsd:element name="interes" nillable="true" type="xsd:string"/>
    <xsd:element name="idInteres" nillable="true" type="xsd:int"/>
    <xsd:element name="alcance" nillable="true" type="xsd:string"/>
    <xsd:element name="idAlcance" nillable="true" type="xsd:int"/>
    <xsd:element name="riesgo" nillable="true" type="xsd:string"/>
    <xsd:element name="idRiesgo" nillable="true" type="xsd:int"/>
    <xsd:element name="agenteGeneradorRiesgo" nillable="true" type="xsd:string"/>
    <xsd:element name="idAgenteGeneradorRiesgo" nillable="true" type="xsd:int"/>
    <xsd:element name="region" nillable="true" type="xsd:string"/>
    <xsd:element name="idRegio" nillable="true" type="xsd:int"/>
    <xsd:element name="bloque" nillable="true" type="xsd:string"/>
    <xsd:element name="idBloque" nillable="true" type="xsd:int"/>
    <xsd:element name="departamento" nillable="true" type="xsd:string"/>
    <xsd:element name="idDepartamento" nillable="true" type="xsd:int"/>
    <xsd:element name="municipio" nillable="true" type="xsd:string"/>
    <xsd:element name="idMunicipio" nillable="true" type="xsd:int"/>
    <xsd:element name="tipoInstalacion" nillable="true" type="xsd:string"/>
    <xsd:element name="idTipoInstalacion" nillable="true" type="xsd:int"/>
    <xsd:element name="instalacion" nillable="true" type="xsd:string"/>
    <xsd:element name="idInstalacion" nillable="true" type="xsd:int"/>
    <xsd:element name="analisis" nillable="true" type="xsd:string"/>
    <xsd:element name="nivelDeAlerta" nillable="true" type="xsd:string"/>
    <xsd:element name="idNivelDeAlerta" nillable="true" type="xsd:int"/>
    <xsd:element name="descNivelDeAlerta" nillable="true" type="xsd:string"/>
    <xsd:sequence>
    <xsd:element name="seguimientos" nillable="true" type="SeguimientoType" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:element name="commodityS1" nillable="true" type="xsd:string"/>
    <xsd:element name="commodityS2" nillable="true" type="xsd:string"/>
    <xsd:element name="commodityS3" nillable="true" type="xsd:string"/>
    <xsd:element name="commodityI1" nillable="true" type="xsd:int"/>
    <xsd:element name="commodityI2" nillable="true" type="xsd:int"/>
    <xsd:element name="commoditySI3" nillable="true" type="xsd:int"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="SeguimientoType">
    <xsd:sequence>
    <xsd:element name="fechaSeguimiento" nillable="true" type="xsd:string"/>
    <xsd:element name="anotaciones" nillable="true" type="xsd:string"/>
    <xsd:element name="documentos" nillable="true" type="DocumentoType"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="DocumentoType">
    <xsd:sequence maxOccurs="unbounded">
    <xsd:element name="id" nillable="true" type="xsd:int"/>
    <xsd:element name="documento" nillable="true" type="xsd:string"/>
    <xsd:element name="nombre" nillable="true" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="NotificacionType">
    <xsd:sequence maxOccurs="unbounded">
    <xsd:element name="nombre" nillable="true" type="xsd:string"/>
    <xsd:element name="email" nillable="true" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>

    I have had this same issue this past week when I tried to manually create the task flows. If I delete the first project, the data control for the second does appear. When I have both projects created and look at the datacontrols.dcx I do see the data control (under each project).

  • IPM 11g integration with oracle applications R12

    Hi,
    We are in process of setting up first IPM instance for AP invoice processing. I installed all required software and got IPM server up and running. I was following installation guide for integration with applications R12 but it is not detailed enough so opened oracle SR and now analyst himself is saying documentation is not enough and you need to use solution accelarator kit. Oracle's product manger is not giving kit before giving training and there is no training in near future so we are just at full stop at this time. Has anybody done successful install and end to end integration with 11g version without solution kit? Can anybody point me to good detailed documentation?
    I would appreciate any help I can get on this.
    Thanks,
    Jigisha

    Hi
    AP Invoice end to end processing would need to have IPM , EBS , ODC , OFR (if needing to include forms recoginition functionality as well ) .
    This is the outline of the architecture that need to be set up for end to end AP processing .
    Let me look around if there is any documentation which gives further details on this topic .
    Thanks
    Srinath

  • Oracle Identity and Access Management Suite Plus Integration with Oracle ADF

    Hi All,
    Kindly advice if Oracle Identity and Access Management Suite Plus can be integrated with Oracle ADF based applications to manage the end-to-end lifecycle of user accounts specifically addressing to roles/priviledges and security.
    Request you to share links to documentation where I can study the steps to integrate both the frameworks.
    Looking forward to hear from you soon.
    Best Regards,
    Ankit Gupta 

    Hi Sébastien,
    I came across the below link for the required integrations -
    Oracle&amp;reg; Fusion Middleware Installation Guide for Oracle Identity and Access Management 11g Release 2 (11.1.2) - …
    Oracle&amp;reg; Fusion Middleware Enterprise Deployment Guide for Oracle Identity Management 11g Release 2 (11.1.2) - Co…
    Best Regards,
    Ankit Gupta

  • OBIEE Installation doc's and integration with EBS 12.0.6.

    HI,
    I had installed OAS 10g with OSS and OID and integration with EBS R12.0.6.
    Now I want to install OBIEE(On Linux) and wants to iuntegrate with SSO.
    Please provide me the Master Doc for this and anyother private doc also if any.
    thx

    Hi,
    Check this might be helpful... http://gerardnico.com/wiki/dat/obiee/linux_installation
    http://onlineappsdba.com/index.php/2007/10/29/biee-installation-on-linux-business-intelligence-enterprise-edition/
    To integrate with EBS check these.....http://it.toolbox.com/blogs/eye-on-obi/oracle-bi-applications-obiee-security-integration-with-oracle-ebusiness-suite-17246
    http://obibb.wordpress.com/2010/07/30/integrating-oracle-ebs-and-oracle-bi-ee-part-i/
    Thanks,
    Srikanth

  • OBIEE 11.1.1.3.0 integrated with Oracle EBS R12

    Hi,
    I have Oracle EBS Vision Instance v R12.1 installed on Redhat 5 and wanted to install OBIEE latest version. Can some please point to system architecture diagram as i am conflicted with installation. I do not have complete idea but writing here what i actually know.
    Oracle EBS R12 on Linux
    OBIEE V 11.X on Linux
    Now install prepackeged analystical function on windows machine and using BI tool deploy/use them with Oracle EBS.
    Please point me to a note which describes the components and what does it take to make up and running in conjuction with Oracle.
    Thanks in advance
    Prashant

    Please see these docs.
    Integrating Oracle Business Intelligence Applications with Oracle E-Business Suite [ID 555254.1]
    What documentation do I need to review when installing and configuring a OBI Apps 7.9.6.x environment with EBS? [ID 1221764.1]
    Master Note for OBIEE Integration issues with EBS, Siebel, SSO, Portal Server [ID 1248939.1]
    Oracle SSO E-Business Suite Applications Integration with Oracle Business Intelligence [ID 553423.1]
    Oracle EBS integration with OBIEE [ID 733137.1]
    Document for implementing security OBIEE Apps with EBS and Siebel CRM as sources [ID 756851.1]
    What Application must be chosen for Responsibility within EBS when integrating with OBIEE [ID 1246464.1]
    Also, search Steven Chan's Blog and you should get couple of hits -- http://blogs.oracle.com/stevenChan/
    Thanks,
    Hussein

  • Integrating with Oracle EBS using XMLGateway issues

    Hi all,
    I'm trying to integrating with Oracle EBS using XMLGateway, and I meet some issues. Here are the steps I did.
    1) Update DATA_MAP.xgm file and DATA_TEST.dtd file into XMLGateway repository
    2) Define transactions in EBS client:
    Party Type: Supplier
    Transaction Type: Cat
    Transaction Subtype: Dog
    Transaction Description: test for cat and dog
    Standard Code: OAG
    External Transaction Direction: IN
    External Transaction Type: Cat
    External Transaction Subtype: Dog
    Queue: APPLSYS.ECX_IN_OAG_Q
    3) Define trading partners in EBS client
    Operating Unit: Vision Operations
    Trading Partener Type: Supplier
    Trading Partener name: ****
    Trading Partener site: ****
    Company Admin email: [email protected]
    ... other transaction info defined in step 2)
    4) Send inbound message using OTA send Inbound Page. It succeed.
    a. The return page display status code 1000 with status discription OK.
    b. From the transaction monitor, I can see the inbound message was processed successfully.
    c. From the database, I can see that this inbound message first arrived in ecx_inqueue table, and then moved to ecx_in_oag_q_table. And last disappeared from the ecx_in_oag_q_table. That means XMLGateway process the inbound message in transaction queue successfully.
    5) Send inbound message using SOAPUi. It failed.
    a. The return page display status code 200. That means the inbound message has been sent to inbound message queue successfully.
    b. From transaction monitor, I cannot see this request record.
    c. From the database, I can saw that this inbound message first arrived in wf_ws_jms_in table, then disappeared. It didn't moved to transaction queue which I selected when defined transations, so I guess it wasn't processed by XMLGateway. Using the following SQL, but cannot find error reason.
    select * from ecx_inbound_logs where process_id='******************'
    select * from apps.ecx_error_msgs where error_id='*****'
    I guess the reason is something happend to prevent inbound message to move from inbound message queue to transaction queue. So XMLGateway cannot process this inbound message.
    From XMLGateway user guide, I understand that there are three kinds of inbound queues(ECX_INBOUND which OTA uses, WF_WS_JMS_IN which soap over https uses, WF_JMS_IN which JMS uses), does't mention what are the corresponding transaction queues? Can they share the same transaction queue? Also see from this user guide, ecx_in_oag_q (transaction queue) is only for ecx_inbound queue. But when I try to define a transaction in EBS client, it seems that only ecx_in_oag_q can be chosen. I wondered why my second senarios failed when I used the same transation and trading partner. The message already arrived at wf_ws_jms_in and then disappeared. Is that because I selected the wrong transaction queue when defining transactions? But it was really cannot select any other transaction queues there. Or I missed some steps when using SOAP over HTTP/S?
    Appreciate you can give me some suggestions. Hope to hear your voice. Thanks in advance.

    Hi,
    Regarding the integration what type of integration you want.
    Can you please elaborate?There are some integration tools releases by Oracle for the integration.
    Regards
    Pramod

  • URGENT:Installing TMS  integrated with Oracle Clinical

    hi ,
    I am installing TMS integrated with Oracle Clinical .
    In the 9i installer screens , one is for
    " Destination Oracle HOme And Oracle HOme Name "
    what should be given here a new Oracle home name and destination or the same where 9i for OC was installed .
    Also can I install TMS and OC on Same database instance ?
    thanks And regards

    I think that TMS should be in the same Oracle home. Architecturally, TMS does install in the same database instance as OC. OPA 4.5 is destined to change that, offering a stand alone TMS instance that integrates with specific instances of OC, RDC, AERS, etc. More details of that &lt;fun&gt; migration whenever 4.5 is officially released.
    Hope this helps.

  • Get error while Integrating with Oracle's Enterprise User Security

    Hi,
    I am trying to create an Oracle Enterprise User integrating with OVD and MS Active Directory.
    I am following all the steps in Integrating with Oracle's Enterprise User Security.
    In the documentation section: "Configuring Oracle Virtual Directory for the Integration"
    I have applied the steps successfully until:
    Update and load the entries into the Local Store Adapters by performing the following steps:
    I have successfully extended the Oracle Virtual Directory schema with the loadOVD.ldif
    However I am getting errors in the next step: Update realmRoot.ldif to use your namespaces
    The next step states the following:
    Update realmRoot.ldif to use your namespaces, including the dn, dc, o, orclsubscriberfullname,
    and memberurl attributes in the file. If you have a DN mapping between Active Directory and
    Oracle Virtual Directory, use the DN that you see from Oracle Virtual Directory.
    The realmRoot.ldif file is located in ORACLE_VIRTUAL_DIRECTORY_HOME/eus,
    where ORACLE_VIRTUAL_DIRECTORY_HOME represents the location where Oracle Virtual Directory is installed.
    The realmRoot.ldif file contains core entries in the directory namespace that Enterprise User Security queries. The realmRoot.ldif file also contains the dynamic group that contains the registered Enterprise User Security databases to allow secured access to sensitive Enterprise User Security related attributes, like the user's Enterprise User Security hashed password attribute.
    Load your domain root information in the realmRoot.ldif file into Oracle Virtual Directory using the following command:
    ldapmodify -h Oracle_Virtual_Directory_Host –p OVD_Port -D cn=admin -w Admin_Password -v -a –f realmRoot.ldif
    When I run the ldapmodify command I get the following error:
    add dc:
    testldap
    add objectclass:
    top
    domain
    domainDNS
    adding new entry DC=testldap,DC=local
    ldap_add: Operations error
    ldap_add: additional info: LDAP Error 1 : null
    The actual realmRoot.ldif looks like this:
    # Please uncomment the following one line if you are importing this
    # LDIF file via OVD Manager or OVD Server's ldapmodify tool.
    #version: 1
    #dn: dc=com
    #dc: com
    #objectclass: domain
    dn: DC=testldap,DC=local
    changetype: add
    dc: testldap
    #o: subarashii
    objectclass: top
    objectclass: domain
    objectclass: domainDNS
    #objectclass: orclSubscriber
    #orclsubscriberfullname: subarashii
    #orclVersion: 90400
    # If your domain structure has more layers than dc=subarashii,dc=com,
    # for example, it's dc=us,dc=subarashii,dc=com, you will need to load
    # the following ldif entry/entries too.
    # Uncomment out the following, if required.
    #dn: dc=us,dc=subarashii,dc=com
    #orclversion: 90400
    #orclsubscriberfullname: us
    #objectclass: domain
    #objectclass: top
    #objectclass: orclSubscriber
    #dc: us
    # Adding EUSDBGroup entry
    # Modify the memberurl attribute and replace it with your own domain name
    #dn: cn=EUSDBGROUP,dc=subarashii,dc=com
    #cn: EUSDBGROUP
    #memberurl:ldap:///dc=subarashii,dc=com??sub?(&(objectclass=orclService)(objectclass=orclDBServer))
    #objectclass:groupofuniquenames
    #objectclass:groupofurls
    #objectclass:top

    Did you ever get your questions answered about the realmRoot.ldif file? Did you manage to configure a successful integration of OVD with EUS? I am battling with trying to get Oracle Virtual Directory integrated with Enterprise User Security, but every step I take in Chapter 7 of the OVD manual fails in some way, and the instructions are often vague. I am not sure how to modify the realmRoot.ldif file. Is there any improved documentation on this? I have logged a Service Request, but not getting any help. Any resources or documentation you know of that provides better guidance would be much appreciated. I am way behind my schedule now and this is a very frustrating exercise.
    Thanks.

  • OTM 6.3 Integration with Oracle EBS 12.1.3

    Hi,
    OTM 6.3 Integration with Oracle EBS 12.1.3 .
    Please suggest me with Oracle MOS DOC ID / steps to achieve this.
    Regards,

    Hi,
    This is a new Cloud community and not focused on EBS. We recommend you to place your question on the MOS community as I am sure they will be able to help you: Oracle Transportation Management (MOSC)
    Regards,
    Pablo.

Maybe you are looking for

  • How do I safety dispose of an old, unusable time capsule? If at all possible, I would like to recycle.

    How do I safety dispose of an old, unusable time capsule?  If at all possible, I would like to recycle. 

  • 1 RH Project, 2 Users - Best Practices

    Hi, I've been the sole writer at our company for 6+ years. I finally have someone to help me; however, this has introduced a new challenge. We will *both* be working on the same RH project, and we will be using VSS for source control. I'm not sure ho

  • HP printer is copying a black page with dark lines

    If someone can help to determine why my HP is copying a black page. Recently the company upgraded to Windows 7, and I am not sure if that is what caused the problem with copying. Today I uninstalled and then reinstalled the printer using the CD. That

  • ITunes Windows too small

    Just a comment. This does not affect the operation of iTunes but I just wanted to point this out. Your panes such as the New Releases, Just For You, Exclusives and Staff Favorites are slightly too small. Since I can't adjust the font size, the names

  • Bill Credit Not Applied

    I have not received my bill credit of $150 per line as agreed to when I signed up 3 months ago. I was told I would receive credit on the 2nd or 3rd bill.