Create task from conversation thread in news feed - Task must be created in custom task list

Hi All,<o:p></o:p>
Have a new requirement
were user should be able to create a task for himself from a conversational
thread in News feed.<o:p></o:p>
In
SharePoint 2013 we have a functionality where we can follow up on a
conversation and it creates a task in My Tasks which is in My site.<o:p></o:p>
But my requirement
is to create a task in Tasks list in same site collection on click of follow
up.<o:p></o:p>
I have
tried one approach as below :<o:p></o:p>
My Tasks in
My site is an aggregated view of all tasks assigned to the logged in user. When
i follow a task in News feed a personal task is created in My task
(WmaAggregatorList_User internal name) list. When i Edit the personal task and
change the Projects
drop down to the required Project Name and Check -"Make this task public to project
members" it just creates a task is specific Site and moves
the task.<o:p></o:p>
I tried to
find if Projects and Check box are columns of Task list , but did not find any
columns.<o:p></o:p>
I am trying
to create a event receiver which would make these columns be set to Site Name
and check box checked so that when user creates a task it will directly move to
Custom Task list.<o:p></o:p>
Please
guide <o:p></o:p>
Thanks in
Advance<o:p></o:p>
Pallavi

Thank you for your responce. I used a content query wp to rollup only the Major Milestones, but am unable to overlay the results to a calendar.. The link you provided is for overlaying different task lists onto a calendar, but does not detail how to
overlay the results from the content query onto a calendar.

Similar Messages

  • Can't Transfer user created mailboxes from G4 iMac to new Intel iMac 24"

    I recently purchased a new intel based 24" iMac and began setting it up. I ran the Migration Assistant to trnsafer user settings, applications and files. about 80% successful so far after two runs. However, I cannot transfer the various email boxes I set up onthe prior mac to store older emails by subject area. I have a .Mac account, but only the Smart mailboxes seem to be backed up.
    Any easy ways to do this so i do not lose my history
    iMac G4 17"" to new iMac 24"   Mac OS X (10.4.6)   Both systems have been updated to latest OS

    Steve,
    Are these two Macs on the same network? If so, then on the old Mac, in System Preferences/Sharing have you selected to allow Personal File Sharing under the Services Tab. If you do, then in the Finder window of the new Mac click on the Network Icon at the left, and you should see all computers available on the network, that have permitted file sharing. Once you sign onto the old Mac, from the new Mac, use the Import command in Mail to navigate to the old Mac's home folder (that is a choice of what to first connect to), and then the Library in that computer's Home folder (you can't use the Home Icon at the left -- that's your new Mac Home folder), where you will find the Mail folder. Open the Mail folder, and then navigate to one Account folder, select to import all mailboxes in this one Account folder. Once those mailboxes (INBOX.mbox, etc) are imported they will be found below all standard mailboxes, just like any other On My Mac mailbox. Rename them to something descriptive, rather than the standard names. Then do any other Account folders the same way. Next open the Mailboxes folder, within the Mail folder on the old Mac, and proceed to Import. Any mailboxes you created as On My Mac on the old computer can be imported. However, you should check whether you have already named some on the new Mac to what you used on the old Mac.
    Hope this is clear, and do not hesitate to ask further questions.
    Ernie

  • Can't start a New Project. Clicked New/Create. Then when I enter new project name and click CREATE

    nothing happens.

    I have the proplem using IE 10 on a Windows 8 OS. When I use Firefox 25.0.1  the issue didn't happen. 
    What I did notice is that in the IE 10 side, I have a new ID name. I didn't knowingly create this ID.  The email associated with the new ID is the same as the ID that I use for the creative suite.  The Firefox side used the old ID and had a bunch of template projects to start. 

  • HT5835 - "A new security code must be created because of a change to iCloud Keychain servers" ?

    Hi there,
    Just got this message pop up on my iPhone - wanted to make sure it was genuine.
    Clicking "Learn More" takes you to support.apple.com/HT5835 (which doesn't exist)
    Can't find anything in the forums either?
    Thanks

    I have the same problem. I will be in the middle of reading or playing a game on my iPad and my iPad will restart then come up with the alert to create new iCloud security code because of a change in the keychain servers. The only other forum post I have found says it can happen when formatting your Mac hard drive but in my case no other devices are being used, it is seemingly random.

  • Remove a task from a ScheduledThreadPoolExecutor

    hi ,
    i have a small program that creates a ScheduledThreadPoolExecutor , and insert one Runnable task into it.
    the task should be preformed for given time and then cancelled.
    but for some reason i can't remove the task from the thread pool , and it keeps on going.
    here is my code :
    import java.util.concurrent.ScheduledThreadPoolExecutor;
    import java.util.concurrent.TimeUnit;
    import java.util.Calendar;
    public class TimeTest {
        private static ScheduledThreadPoolExecutor executor;
        private Runnable task;
        public TimeTest(){
            executor = new ScheduledThreadPoolExecutor(10);
            task = new MyTask(System.currentTimeMillis() +15000);//death time is 15 seconds from now
            executor.scheduleAtFixedRate(task, 5L, 5L, TimeUnit.SECONDS);
        public static void removeTaskFromThreadPool(Runnable task) {
            executor.remove(task);
        public static void main(String[] args) {
            new TimeTest();
        public class MyTask implements Runnable {
            private long deathTime;
            public MyTask(long deathTime){
                this.deathTime = deathTime;
            public void run() {
                if(deathTime - System.currentTimeMillis() > 5000){
                    System.out.println("time = " + Calendar.getInstance().getTime());
                }else{
                    System.out.println("removing MyTask");
                    TimeTest.removeTaskFromThreadPool(this);
    }thank in advance and a happy new year :-]

    private static ScheduledThreadPoolExecutor executor;
    private Runnable task;
    private ScheduledFuture future;
    executor.scheduleAtFixedRate(task, 5L, 5L, TimeUnit.SECONDS);
    future = executor.scheduleAtFixedRate(task, 5L, 5L,  TimeUnit.SECONDS);
    public static void
    removeTaskFromThreadPool(Runnable task) {
    executor.remove(task);
        future.cancel();

  • Program to create PO from PR

    Hi Experts
    I am new to ABAP. My requirement is create PO from a released PR.
    I am able to create a PO when i open ME21N and provide requisition number in ITEMS tab, save.
    But now i need to create a program in SE38.
    when i m trying to use bapi_po_create1, i m getting errors : maintain services or limits .
    can you please send me pseudo code to achieve this .
    Thanks in advance.
    Regards
    Abhishek

    Use the class CL_BCS (business communication Services). A lot of examples around on SDN.
    /people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface
    Edited by: Micky Oestreich on May 2, 2008 12:13 PM

  • Create Webservice from an EAR

    Hi,
    I want to deploy a java EAR file into the PI java stack and then wrap it into a webservice and expose it from PI for use.
    How to do that?
    Regards,
    Nitin

    Hi,
           Deployement of Web Services:-
    Step 1)
            In NWDS
         Goto Windows->Open Perspective->others -->J2EE development.
    Step 2)
         Goto File->new->Ejb module(give project name).
    Step 3)
         Right Click on the <project name> eg. work_ejb select new->Ejb.
    Step 4)
         Give an appropriate EJB name and default package (eg. com.xxx.yyy).
         Also select stateless Ejb.
         Click next then next and then next.
    Step 5)
         Add method with an appropriate name.
         Mention the return type and also assign the required parameters.
         Logic is written in the EJB module bean.
    Step 6)
         Right click on the <project name> and build EJB Archive.
         Creates .jar
    Step 7)
         Goto File->new->Enterprise Application project(to create EAR)
    Step 8)
         Give project name, assign EJB and build.
         Creates EAR.
    Step 9)
         Right Click on the EJB.
         Goto new->Web services.
         Specify name of the web service.
         Specify EAR in the WEB service.
    Step 10)
         Build EAR.
         Build Ejb.
    Step 11)
         Goto Windows->Prefrences->SAP j2EE engine.
         Give the message server host name.
    Step 12)
         Right Click on EAR and deploy.
    Step 13)
         Goto-> http://<host name>:<port no.>/index.html
    Step 14)
         Choose the web service name,test it and download it(default WSDL).
    Step 15)
         Import port(WSDL) in External definition of SAP PI.
    regards,
           Milan Thaker.

  • Error while creating subsite from site template

    Hi,
    I am getting below error while creating subsite from existing site template .
    Sachin Bhosale

    There must be a duplicate Email field created in any list/library. The cause can be identified by renaming the site template to sitename.cab > extact the cab file > open the manifest file search for email and see where it is associated. Refer
    to the following blog post for more information
    http://sharepointserved.blogspot.com/2012/11/a-duplicate-name-was-found.html
    http://sharepoint.stackexchange.com/questions/11944/error-when-creating-a-site-from-custom-template-a-duplicate-field-name-name
    Cheers,

  • Can't create MBO from SAP servers

    Hi,
    I'm trying to create MBO from SAP servers with Sybase Unwired WorkSpace.
    I created Connection Profile and it worked well(Ping succeeded!).
    However, I expanded profile tree, no BAPI was shown.
    Any ideas what is happening here?
    SAP version is below,
    SAP
    ERP: ERP 6.0 EHP 5
    NetWeaver: SAP EHP 2 for SAP NetWeaver 7.0
    OS: Windows NT 2x X86_64
    Sybase Unwired WorkSpace
    2.1.0
    Additionally, It worked well in SAP ECC 6.0.
    Regards,
    Hiroshi Saito

    Eventually, the problem is resolved.
    It related SAP Note 706195.
    I did the Solution in the Note, all BAPI is displayed in Sybase Unwired WorkSpace's Enterprise Explorer.
    Note 706195:
    http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_dwb/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d373036313935%7d
    thanks,
    Hiroshi Saito

  • Can't create PDFs from Acrobat or Word?

    Downloaded the 8.1.4 update and now I can't create PDFs from Acrobat or Word.  If I try to create a PDF from the print menu, I get a message indicating that there are no print drivers for this...any ideas?

    Thanks for responding.  Yep, I tried repairing it...no dice.  Then I realized that I'd re-installed AA Pro 8 (having completely given up on the AA Pro 9 upgrade that crashed my system) but not the updates.  So I went through and re-installed each update.  Still no dice. Then I did another repair. Nope.  When I try to create a PDF via the print menu, I get a "Windows cannot print due to a problem with the current printer setup."  This tells me that I have driver problem. But everything else prints fine, and I'm pretty sure Acrobat doesn't have drivers.  I'm stumped...

  • Create PDF From Web Page - Authenticated SharePoint Sites generate "Authorization Failure" error

    We have several authenticated sharepoint sites on our intranet, and we are trying to create a PDF of a site (x levels down) using the Acrobat create PDF from web page feature.  When you try to create a PDF from a non-sharepoint, authenticated website, a login prompt appears asking for login credentials.  However, when you try to use the same feature on an authenticated sharepoint site, you do not get prompted for credentials and instead get an Authorization Failure error.  the popup says "Error: Nothing Done".  We have successfully PDF'd anonymous sharepoint sites on the WWW.  Has anyone successfully PDF'd an authenticated SharePoint site? 
    Thanks in advance,
    -Richard.

    I am having the same issue AND none of my pages or files require a UserID or Password. My issue appears to be something with the domain because a and b work just fine and produce a PDF file while item c does not work and produces the error msg.
    http://www.dot.wi.gov/projects/neregion/151/index.htm works just fine and produces a PDF file.
    http://www.dot.state.wi.us/projects/neregion/151/index.htm works just fine and produces a PDF file.
    http://www.wisconsindot.gov/projects/neregion/151/index.htm produces an error msg. ‘Nothing done’.Error info. - Authorization Failure    http://www.wisconsindot.gov/projects/neregion/151/index.htm
    [email protected]

  • How to Create PR from exeternal SQL Server through IDOC

    Dear all,
    I am in trouble while creating PR from exeternal SQL Server through IDOC . although I have created PR from TCODE we19 giving input as well as from function writen below
    My scnerio is from external system(Sql) want to send data to sap to create PR return PR No to SQl Server
    Not having idea how to do
    Basic Type for Idoc : PREQCR01
    Message Type       : PREQCR
    Function Module    : BAP_Idoc_Input1
    Thanxs in Advance

    if you have XI installed,
    than it would be easy,
    just use JDBC channel->XI->SAP IDOC.
    otherwise,
    you can export the table from the SQL to CSV file,
    and import it with LSMW with IDOC PREQCR01.

  • Integration pack to create user from template

    Does anybody know if the Orchestrator 2012 Sp1  active directory integration pack has a way to create user from a template?
    I believe there is a create user but not from a template.
    Thanks
    Lance
    Thanks Lance

    Hi Lance,
    you are right. There's no "Create User from template" or "Copy User" Activity in the Integration pack for Active Directory in System Center SP1 or R2.
    Perhaps, you can use "Get User" to get some settings from the template and subscribe the results to "Create User" Activity.
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • Creating RSS News Feed of a BC Blog

    Hey guys,
    Thanks to these forums and Liam Ive been able to learn so much about webdesign, but became stuck again (at another very obvious thing I believe).
    The thing is, Ive got my blog on BC up and running and the RSS feed also, but how do I go about creating an RSS News feed and displaying the newest posts in an iframe?
    I am aware of some third party services that are able to do that, but i'd like to learn another way.
    Thanks!

    Thanks for the replies guys,
    So sorry I wasn't clear enough:)
    What I am trying to achieve is that I made a blog with BC catalyst and would like to show the newest post in some sort of News frame on my site (made in Muse) which would update automaticaly (and I understand this is done with the help of the blog's RSS feed?).
    I have been able to do that with a third party online service, but they always show "Powered by ...." or some other stuff, which isn't ideal.
    Take care!
    Martin
    EDIT: Also, if it would be possible, I am using the Blank Widget Composition in Muse which shows a frame and a number of tabs below it. The frame shows a content and changes depending on which tab U click. Now Im probably asking too much, but do U guys think it would be possible to show the newest post by clicking on the first tab, second newest post by clicking on the second tab, etc?
    The only thing I could think of would be to tag number the posts and then somehow substract 1 from the newest post. So let's say the newest post is 150-1=149 so after clicking on the second tab it would show 149 and so on for other tabs.

  • When i start new task from adf 12.1.3, i receive error.

    Hi,
    When i start new task from adf 12.1.3, i receive error.
    ".... Caused by: java.lang.IllegalStateException: Invalid SCAEntityId "-1". ..."
    How to fix it?
    Thanks.

    When call create instance, receive error
    String task = ims.createProcessInstance(ibpmContext,  pms.getCompositeDN()+"/"+pms.getProcessName());
    ------error------------------------
    BPM-70204
    Exception
    exception.70204.type: error
    exception.70204.severity: 2
    exception.70204.name: Error creating process instance.
    exception.70204.description: Error creating instance for target process default/HelloWorldProject!1.0*soa_39bf35b3-5d40-4af1-b3cc-54e170a8be1f/HelloWorldProcess.
    exception.70204.fix: Verify server log to find the problem cause.
        at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:258)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:474)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:285)
        at oracle.bpm.services.instancemanagement.ejb.InstanceManagementServiceBean_sqa2w0_IInstanceManagementServiceRemoteImpl_12130_WLStub.createProcessInstance(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
        at com.sun.proxy.$Proxy520.createProcessInstance(Unknown Source)
        at view.beans.BPMTaskManagement.initiateBpmTask(BPMTaskManagement.java:75)
        at view.beans.AssignedTasksHelper.startNewProcess(AssignedTasksHelper.java:41)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at com.sun.el.parser.AstValue.invoke(AstValue.java:254)
        at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:302)
        at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)
        at javax.faces.event.MethodExpressionActionListener.processAction(MethodExpressionActionListener.java:148)
        at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
        at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:1113)
        at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:179)
        at org.apache.myfaces.trinidad.component.UIXComponent.broadcastInContext(UIXComponent.java:364)
        at oracle.adf.view.rich.event.ProxyEvent.broadcastWrappedEvent(ProxyEvent.java:72)
        at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:124)
        at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794)
        at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:1074)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:402)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)
        at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
        at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
        at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
        at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
        at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)
        at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
        at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
        at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:105)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
        at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:327)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:229)
        at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
        at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
        at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
        at java.security.AccessController.doPrivileged(Native Method)
        at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
        at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
        at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
        at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
        at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
        at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:220)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
        at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3436)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3402)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
        at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)
        at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)
        at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
        at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)
        at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:255)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    Caused by: java.lang.IllegalStateException: Invalid SCAEntityId "-1".
        at oracle.bpm.bpmn.engine.ejb.impl.BPMNInstanceManagerBean.createComponentInstance(BPMNInstanceManagerBean.java:242)
        at oracle.bpm.bpmn.engine.ejb.impl.BPMNInstanceManagerBean_j9rppc_IBPMNCubeInstanceManagerLocalBeanImpl.__WL_invoke(Unknown Source)
        at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:33)
        at oracle.bpm.bpmn.engine.ejb.impl.BPMNInstanceManagerBean_j9rppc_IBPMNCubeInstanceManagerLocalBeanImpl.createComponentInstance(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
        at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)
        at com.sun.proxy.$Proxy333.createComponentInstance(Unknown Source)
        at oracle.bpm.services.instancemanagement.impl.InstanceManagementService.createProcessInstance(InstanceManagementService.java:194)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)
        at oracle.bpel.services.workflow.common.WorkflowServiceCacheEventAdvice.invoke(WorkflowServiceCacheEventAdvice.java:114)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
        at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
        at com.sun.proxy.$Proxy343.createProcessInstance(Unknown Source)
        at oracle.bpm.services.instancemanagement.ejb.InstanceManagementServiceBean.createProcessInstance(InstanceManagementServiceBean.java:103)
        at oracle.bpm.services.instancemanagement.ejb.InstanceManagementServiceBean_sqa2w0_IInstanceManagementServiceRemoteImpl.__WL_invoke(Unknown Source)
        at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:34)
        at oracle.bpm.services.instancemanagement.ejb.InstanceManagementServiceBean_sqa2w0_IInstanceManagementServiceRemoteImpl.createProcessInstance(Unknown Source)
        at oracle.bpm.services.instancemanagement.ejb.InstanceManagementServiceBean_sqa2w0_IInstanceManagementServiceRemoteImpl_WLSkel.invoke(Unknown Source)
        at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:226)

Maybe you are looking for