BPM 11g changes to process aren't getting deployed

I'm having trouble seeing changes I make to the process model in BPM 11g. For instance, if I add a new activity or change data associations/mapping in the activity and re-deploy, it doesn't take effect.
I've tried doing a clean all, make all, and undeploy all project artifacts (undeploy project composite from soa-server and undeploy UI ear file) before deploying. I don't see the changes unless I restart the soa-server.
Any suggestions? Is this a bug?
Thanks
Mark

There's definitely some issues with deploying changes. We've found that if there are BPEL processes in you BPM process and you make changes, you'll need to bounce the SOA server too, to see the changes. Also, some people are experiencing instability issues when you keep increasing the version number. You get to about 4 or 5 versions, and it stops locks up the SOA server. I've found un-deploying and then do a fresh deploy seems to be the best way to make changes for now. I believe engineering is aware of this problem and is working on fixing it.

Similar Messages

  • BPM and Change Management Process

    Hi,
    We have a requirement to automate the change management process. Typical functionality needed is - input the change required, assign priority, organise risk assessment, change approvals, change implementation, send automatic emails to managers etc.
    Is BPM a best fit to this kind of Change Management Process?
    Thanks
    Srikanth

    Hi Srikanth,
    It's a good question and I hope this helps.
    My short answer is that "it depends...".
    Yes, an Oracle BPM process will let your users enter the change required, assign priority, define the change approvals, and send automatically send emails to managers.
    Not saying that this is the case here, but sometimes people confuse an application with what BPM does with a process.  Ask yourself if your candidate process for BPM has one or more of these characteristics:
    Workflow - are there multiple people involved in the editing and approvals over some period of time?
    Documentation - as work flows through the process, will you need to gather requirements / documents and associate these with the instance?
    Seamless integration - are there systems and or databases involved that you need to integrate into the process?
    Efficiency - do you want to ensure that your process continues to flow and escalates when a work item sits too long in someone's queue?
    Governance - do you need to have an audit trail of the various people who were involved as a work item instance (a change approval in your case) flowed through the process?
    Compliance - do you need to have the change management instances go through a process in a consistent and well documented manner?
    Visibility - do you need to gather key performance indicators as instances flow through the process and do managers need to track these in business activity monitoring reports?
    Hope this helps,
    Dan

  • How to access BPM 11g payload or process varibles in ADF task flow

    I am trying to view/edit data in a UI tied to a database using a foreign key, requestId. The foreign key comes from a BPM process where it is passed into the task flow, from a human task. The foreign key comes from process variables or payload values. I know I can simply load the payload in BPM with data from the tables, but I'm looking for a better solution to leverage ADF Business components to view and edit the data directly in the UI.
    The BPM process uses a web service to kick off the process. The web services takes a primary key as a parameter to reference a column in the database table. The database is pre-populated with content and a primary key reference. The first activity is a user activity. I want the task flow behind the user activity to accept this primary key and use it to locate the desired row in the database so views associated with database bounded ADF Business Components can work to present the data in the UI.
    I've tried two approaches to the problem. The first uses the operation setCurrentRowWithKeyValue. The other modifies the SQL where clause, used by the ADFbc Iterator, to only return a row for the given requestId. Both approaches fail to work because I don't know how to access the BPM payload or data variables coming into the task flow. Here's the snipet of code I used to try to set the row using setCurrentRowWithKey value:
    public String setRequestId() {
    FacesContext context = FacesContext.getCurrentInstance();
    Object requestObj = context.getApplication().evaluateExpressionGet(
    context, "#{bindings.RequestId.inputValue}", Number.class);
    if (requestObj== null)
    return null;
    Number requestId;
    requestId = (Number)requestObj;
    DCIteratorBinding itr = (DCIteratorBinding)
    getBindings().get ("PatfRequestHdrView1");
    itr.setCurrentRowWithKeyValue(requestId.toString() );
    return null;
    I haven't gotten very far with the second approach, modified SQL where clause, since I don't know Groovy. I think I need something like:
    adf.object.viewObj.RequestId. But there isn't a viewObject associated with BPM data, so I'm sure this particular expression won't work.
    Any help you can give me is very appreciated.
    Regards,
    Mark

    The first thing I want the task flow to do is display a page with a form showing the values from the database. This is why I tried to call the method first. If I add the setCurrentRowWithKey to the form as a button, I can get the form to load the data, but it's a two step process, requiring the user to click a button. The method approach throws the following exceptioin
    oracle.adf.controller.activity.ActivityLogicException: ADFC-02013: The ADF Controller cannot find metadata for activity '/WEB-INF/ApproveTravel_TaskFlow.xml#ApproveTravel_TaskFlow@setTravelRecord'.
         at oracle.adfinternal.controller.util.Utils.createAndLogActivityLogicException(Utils.java:230)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:927)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:777)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:147)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:109)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:78)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:698)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:285)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:62)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:2

  • How to get the assignees for a specific role in process in BPM 11g

    Hi, Gurus,
    I am using BPM 11g. I am trying to retrieve all the assignees for a a specific role in process. It will be a parameter for a business rule to do further routing rule. But it seems there is no way to get the information. I found that there are Identity Service Functions in Human Task Assignment. But Identity Service Functions are not listed in Business Rule Activity, neither listed in other activities except Human Task Assignment. I cannot get the assignees in my process.
    Is there any way to get all the assignees for a role? I also tried to retrieve the assignees out engine with Worklist API, but it cannot get either. Actually we can get all the assignees information in automatic activity in OBPM 10g. Maybe I am still not familiar with 11g. Any advice is appreciated.
    FYI:
    My scenario:
    Suppose we have a role named ApprovalTeam. In this role, there will be several different department manager (BPM User) added in the role through Workspace. At run time, a request (With department info) with go through the approval by ApprovalTeam. A Business Rule Activity with decide which department manager will approve this request. Different department request will be dispatched dedicate managers, not all the managers in the role. I have an external JavaBean to get the department information from LDAP. To do the routing, I also need know all the department managers (BPM User) in the ApprovalTeam role. Then I can compare which department manager is matched with the request and assign the task to him.
    Thanks a lot,
    James
    Edited by: James Piao on May 31, 2010 6:25 PM

    or this?
    SQL> select text from ALL_VIEWS
      2  where VIEW_NAME
      3  ='EMP_VIEW';
    TEXT
    SELECT empno,ename FROM EMP
    WHERE empno=10

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

  • Getting user name of person logged into workspace in BPM 11g.

    What API and method calls can we use to determine who is logged into BPM 11g? Since many people can be assigned a role or human task (using dynamic task assignments) how can we determine who the actual user is?
    The use case is a user logs into the workspace and executes human tasks assigned to him/her. In the ADF UI, we are using database controls to view, update and create records in database associated with this task. The tables have audit information like, LAST_MODIFIED_BY and MODIFIED_DATE. These fields or columns need to be updated with the user ID and current system date when data changes in the tables.
    The problem is that I know how to get the user who the task is assigned to, but if the user is a delegate or process owner, how do we know? Also if many people are assigned to the human task, how do we find which one is actually working on the human task? In other words the current logged in user?
    In the ADF task flow, I have access to an object SystemAttributesType that contains a lot of useful information, like the list of assignees. The problem is it doesn't seem to give me information about who is actually working on it (logged in user). Here's a code snippet for how I got this object. It is a method in a managed bean associated with the task flow.
    public List getAssignees() throws IOException {
    FacesContext context = FacesContext.getCurrentInstance();
    String ctx = (String) context.getApplication().evaluateExpressionGet(context,
    "#{pageFlowScope.bpmWorklistContext}", String.class);
    String tskId = (String)context.getApplication().evaluateExpressionGet(context,
    "#{pageFlowScope.bpmWorklistTaskId}", String.class);
    IWorkflowServiceClient workflowSvcClient = WorkflowService.getWorkflowServiceClient();
    ITaskQueryService wfQueryService = workflowSvcClient.getTaskQueryService();
    IWorkflowContext wfContext;
    List assignees= "";
    try {
    wfContext = wfQueryService.getWorkflowContext(ctx);
    Task myTask = wfQueryService.getTaskDetailsById(wfContext, tskId);
    Element xmlPayload = (Element) myTask.getPayloadAsElement();
    SystemAttributesType systemAttributes = myTask.getSystemAttributes();
    assignees = systemAttributes.getAssignees();
    return aissignees;
    Thanks in advance for your help.

    Hi.
    Plz find the link below, it might hep you.
    11g how to get participant information
    Bibhu

  • Invoking bpel process from java in oracle soa/bpm 11g

    Hi,
    We have some java code to invoke bpel process in oracle BPM 10g following the instructions in http://download-east.oracle.com/docs/cd/B14099_19/integrate.1012/b14448/invoke.htm.
    Basically the steps are:
    1) get a Locator (com.oracle.bpel.client.Locator)
    2) get IDeliveryService (com.oracle.bpel.client.delivery.IDeliveryService) reference from locator
    3) call IDeliveryService method request or post with input message and get the response back.
    Recently we want to migrated from oracle bpm 10g to oracle soa/bpm 11g. But I can not find the similar API in 11g. It seems now some adapter/binding need to be added in exposed service lane in soa composite view, for example, ADF-BC, direct binding etc, in order to allow java to invoke a bpel process. Here are two very useful links from Edwin about the detail how this is implemented.
    http://biemond.blogspot.com/2009/11/invoking-soa-suite-11g-service-from.html
    http://biemond.blogspot.com/2009/11/calling-soa-suite-direct-binding.html?showComment=1285198033913#comment-c1055322845511794252
    My question is:
    1) what are the choices and the official/best way to invoke a bpel process in oracle soa/bpm 11g from java?
    2) does user need to add an adapter/binding in exposed service lane in order to let the bpel service be called in java?
    3) what is the real difference between a bpm application and soa application in 11g?
    I will really appreciate any expert's opinion.
    Thanks,
    Bin

    Thanks for your reply and confirmation, really appreciate it.
    Yes, I found the difference of the invoking process API and was able to invoke bpel process using direct and ADF-BC binding by following Edwin's blog. But I have not found any official reference to compare this API difference between 10g and 11g ( I will mark this question as answered if anyone can find an official source from oracle, need to prove it to the team). The API to work with human task workflow seems pretty much the same between 10g and 11g.

  • Instatiating BPM process through BPM 11g workspace

    Hi ,
    I am working on OPBM Sales Quote lab.
    I installed Oracle SOA 11g and set up the BPM SalesQuote demo. I followed the demo setup instructions to add the roles and match them to demo users. I was able to deploy the demo successfully using Jdeveloper. Since the start task for the demo is a none start, I am not sure how to initiate a new instance. I loged in to the workspace as jcopper who's role is the SalesRep (which is the swimlane for the non start task). However, I didn't see any application listed for jcopper. I also loged in as the process owner and didn't see any application listed for him either.
    I even referred to this thread
    How to initiate an instance of the BPM 11g SalesQuote demo?
    When I implemented the "Enter quote details" task, I even set its pattern as "Initiator"?
    Even then Under applications it is empty.
    Any Suggestions is appreciated.

    Hello All,
    Deployment of the "SalesQuoteDemo' demo is over. Logged in to BPM WorkSpace with user “jcooper” but I am not able to see application in the user's BPM Workspace. Verified all the users (and jcooper) and their role in Weblogic Default Realm and everything seems to be OK.
    I have deployed SalesQuoteDemo from this official link of Oracle and have followed all steps. Users/Groups have been created by running a demo seeding program given along with demo.
    http://www.oracle.com/technetwork/middleware/soasuite/samples-demos-084065.html
    I did these steps for verification.
    •     RAM/PermGenSpace seems to be OK and there is no error/exception related to memory.
    •     As per the demo, jcooper is part SalesRep role and it has been verified that both jcooper and SalesRep exists. Mapping also exists. Attaching few screenshots from Oracle Enterprise manager/BPM Workspace/Weblogic Console.
    •     As per the Baig, mentioned that this issue was resolved when new domain was created without webcenter. For me, new domain is somehow not working and deployment are getting failed/suspended/prepared status but I had taken out Webcenter related Managed Server from this Weblogic domain.
    •     Few have mentioned to login to Enterprise manager, select application, select security, role and map the user for every roles. I verified that this already exists.
    Any help/pointers in this regards would be highly appreciated.
    Thanks
    Sachin G

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

  • Versioning of processes in Oracel BPM 11g

    Hi,
    I have a question about versioning of processes in oracle BPM 11g.
    Former Oracle BPM product (Aqualogic BPM) automatically managed the versioning of processes deployed to the server. When a new version of a process was created, the server automatically determined if it is a minor or major revision and a new process version number was recommended.
    Is there a similar functionality in new BPM engine?
    Now, when I deploy a new version of process I can only choose between rewriting existinig revision (all active instances will stale and become unusable) or deploying new revision (all active instances will continue using previous version).
    Is there a way to migrate existing instances to new process (if there were only minor changes)?
    Hope someone can answer. Thnx.

    This feature (migration of running instances to new version) is intended to be available in PS3 which is planned for early 2011.
    I suggest you check out the release documentation for confirmation however.

  • I am trying to restore my calendar from my Time Machine backup. I can get through the process, but at the end I get a message that Calendars cannot be amended as it is required by OS 10. There is no facility to authorise a change. How do I get round this

    I am trying to restore my Calendar from my Time Machine back up. I can get through the process but at the end I get a message that Calendars cannot be removed or amended as it is required by OS10, there does not appear to be any option to authorise the backup or change. How can I get round this roadblock?

    I am trying to restore my Calendar from my Time Machine back up. I can get through the process but at the end I get a message that Calendars cannot be removed or amended as it is required by OS10, there does not appear to be any option to authorise the backup or change. How can I get round this roadblock?

  • HOW CAN I GET MY CHANGE IN PROCESSING(got it)?

    Hi all....
       please understand my requiement and get back with your valueble answers...
    iam having one table control in one of my screen....
    in that....table control it contains three fields.... so as we know three columns...
    middle column is for second field...
      here i am changing first entry ( 1st row of second column) manually... and clicking one push button of my screen to do some caluclation part combine with table control entries...
    ex: table controls looks like.....(before)
         1   100 ab
         2   200 gh
         3   300 vf
         4   400 fh
         .. .... ......  etc
    now manual i changed above like....(after)
         1   150 ab       <------ only change
         2   200 gh
         3   300 vf
         4   400 fh
         .. .... ......  etc
    So... here my problem is iam getting my caluculation part with that field as 100 only.... not as 150,
    even i debug this variable with defferent conditions like......
       READ TABLE ITAB WHERE ITAB-F1 = 1.
    SO HOW CAN I GET MY CHANGE IN PROCESSING? WHERE I HAV TO MODIFY MY PROGRAM?
    (edited: prevoius ly this value is capturing correctly...because that calculation part is in the module which is added between chain and endchain)
    Expect Max marks,
    Thanks,
    Naveen
    Edited by: Naveen Inuganti on May 27, 2008 11:57 AM
    dont worry guys i got the answer.... we have to catch that varible in the chain and endchain operater.... by using module.....
    thank you all...
    bye...
    Edited by: Naveen Inuganti on May 27, 2008 3:41 PM
    Edited by: Naveen Inuganti on May 27, 2008 4:00 PM
    Edited by: Naveen Inuganti on Jun 13, 2008 11:44 AM

    Hi,
    I think f2 is a key field in table.So 150 considered as new entry.this case you have to keep 100 for delete from table then add 150 entry.i think you are getting update in itab.But not in table.If you  are not getting itab, post your code to check

  • BPM 11g Process Administrator functions: Where are they now??

    Good morning,
    I've got some decent ALBPM6.0.5 experience, and now I've just started in a new project that uses BPM 11g. I've attended to an Oracle "Hands On" so I know 11g is VERY different from 10g/ALBPM.
    My main problem is that I cannot find anywhere where are Roles and Users managed in the server. From where do I administer Roles, Users, Groups, Organizational Units. All that used to be in the Process Administrator. How is that done now? I swear I've gone through all the documentation at http://download.oracle.com/docs/cd/E14571_01/soa.htm and still found nothing :(
    Also, is now using an LDAP mandatory? Or can something like ALBPM Directory still be used??
    Thanks in advance.

    User/Role management is now done through the workspace itself. You must login as an administrative user (like weblogic) and you will see an Admin link in the upper right of the workspace.
    Authentication and user lookup is now handled directly by Weblogic - so you setup authentication Providers in the WLS security realm through the admin console.
    By default Weblogic is configured to use an internal LDAP that stores local users (this is where the "weblogic" user itself is defined).
    General steps are provided here:
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10226/hwf_config.htm#BHCJGBFJ
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/secmanage/atn.html#wp1198953
    Edited by: Mike Rokitka on Jul 2, 2010 11:17 AM

  • BPM 11g Process Hierarchy?

    Hi,
    In the BPA Suite I can define a process hierachy by assigning a BPMN process diagram to a function like a subprocess.
    (How) can I do this in the BPM Suite 11g?

    I believe you have to use the Send/Receive tasks now in order to call a reusable subprocess in BPM 11g. This requires the sub process to be message based where as the Call activity allowed non message based processes.

  • BPM 11g Workspace Audit Trail not showing Sub process inner activities

    Hi all,
    I have been developing some BPM Process in JDev 11.1.1.5 and have deployed them in BPM Suite 11.1.1.5 over Windows Server 2003. I've found the following and would like to hear your opinion:
    1- The Process audit trail in BPM 11g Workspace shows the activities of the process but the Sub-Process call activity appears as just a single activity and you can not see the inner activities of the sub-process... making impossible to track the sub-process.
    2- In the EM Instance trail you can track the subprocess activities, but they appear wrong; diffrent names, diferente types (ex: interactive activity shown as service call)..etc..
    Are these known issues? is this the expected behaviour? Is it just some configuration I missed?
    Thanks for your time.

    For anyone with the same question, I got this from Oracle support about both questions:
    1- I checked with our Engineering team and regarding the expanding of the subprocess activity , it is planned to be released in 12g. So right now , it is a work in progress feature being addressed by our developers.
    2- Thanks a lot. I have reported a bug 12909848 to our Engineering team. You can track the status of the bug from the SR.

Maybe you are looking for

  • Does Anyone know how to remove iPhoto from Final Cut Pro X.

    I am trying to remove iPhoto from the Effects bar in Final Cut Pro X.

  • Payment release through work flow

    Hi Friends, I am new for work flow. I have activated payment release work flow (WS 00400021) and same has assigned to user. But when i am making payment through F-53, system is posting the transaction and getting posted. I dont how to excute the tran

  • Big issues with the new MAC OSx RDP client; crashes with Excel formattings or open Libre Office

    We found out, that the new version of the MAC OSx RDP client (Version 8.0.24255) has some big problems: example: formatting an Excel column: text blue: the RDP crashes (re-producible); opening libre office calc (with 3 RDP-sessions open): RDP crashes

  • Photoshop Elements 11 options toolbar

    I'm having trouble viewing my tool options bar in PSE 11 at a lower screen resolution of 1344 x 756. i can see the tools, but the options for these tools is not showing up at the bottom of the screen. Does anyone know if there's a way around this or

  • Deleting Entity Services

    Hi All: I deleted an entity service call Status_Obj, but after Generate all Project Code, appears the following error: Error               Status_ObjServiceLocal cannot be resolved (or is not a valid return type) for the method create     Status_ObjS