How to show My Tasks from all sites in site collection

I have a site collection with several sub sites
Each site has multiple lists and on those lists, Publishing workflow is enabled.
For each workflow I have a SharePoint group named "Approver" in which I have added two persons:
Person1
Person2
All workflows are setup like this:
1. In workflow where it asks for Approvers I have given that group name "Approver"
2. In "Order" I have selected "All at once (parallel)" because I want any one of the approver to approve tasks
3. Below in "Expand Groups" option I have de-selected the checkbox
The workflow is working fine as it shows pending tasks in Workflow Tasks lists as well as each approver gets an email alert.
BUT
I am displaying each Workflow Tasks list in each site which is not user friendly. I want to show all pending tasks in a single list to user.
For that I added CQWP but problem is you can filter by "Assigned To = Approver" where approver is group name here as described above. CQWP only accepts USER NAME and not GROUP NAME in "Assigned To" field.
If in step 1 above I give each user name instead of group name "Approver" then unless all users have approved/rejected tasks, workflow doesn't ends which I don't want. I want any one of the user to end workflow by approving/rejecting.
What should I do now?
TLDR
If somehow I can filter by user group name in CQWP then my problem will be solved.

Thanks.  It's a very detail-oriented process, tedious if you will. (Which is why I posted, hoping someone doesn't have to spend 3 weeks like I did.)
As far as security trimming it, I think you have to ask yourself how you would security trim info within any web part? Unfortunately, I don't think it's very straightforward to do. 
My best guess would be to solve with jQuery / JavaScript.  So, you would have a webpart to display the content, then code to determine what CAN be displayed, I don't see how you could do both without creating a custom webpart via VS.
Steve Clark, MCTS |
Twin-Soft Corporation
Easy Bins Roll-off Dumpster Rentals in Northern VA
Specializing in:
Driveway-sized, roll-off dumpster rentals in Fairfax VA |
Dumpster Rentals for Junk Hauling in Springfield VA
Roll-off Rental Dumpsters in Annandale, VA |
Dumpster Rentals for Estate Cleanout in Alexandria VA

Similar Messages

  • How to access UWL tasks from ABAP ?

    Hello workflow experts!
    We are using UWL adhoc workflows (java workflow) in connection with Portal collaboration rooms. The system creates the tasks in the java workflow with relation to the collaboration room - so far so good.
    Now I would need to read adhoc tasks (or workflows) from ABAP. I have not found any API yet. Does someone know how to get Java workflow tasks from ABAP ?
    Thank you in advance!
    Johannes

    Hi Johannes ,Please see if this information helps.
    WebFlow offers the open interface called Wf-XML.The Wf-XML interface is based on XML and allows workflows from different vendors to communicate with each other.Wf-XML is the only open interface for supporting interoperability of business processes.
    Wf-XML comes from the Workflow Management Coalition, an independent body of workflow vendors.
    The Actional control broker integrates directly into SAP WebFlow enabling proxy objects to be called directly from the workflow step. When called, the proxy method will make a call to the outside system either as a background task or as a dialogue step.
    These proxy objects are generated in the SAP system using a converter which converts the objects interface  to the SAP syntax.
    A detailed description of the interface is available on the WfMCs web site at www.wfmc.org.
    Edited by: Umakanth R on Dec 9, 2008 12:49 PM

  • How to show one list  from bean two times

    Hi All,
    I am using jdeveloper version 11.1.1.6.0.
    I have a scenario where I want to bind list attribute from the my bean to two different talbes or iterators.
    I want to show this list twice on the page.
    If I keep both the tables then it shows only one of it.
    <af:table value="#{myAccShoppingCartBean.favAccountList}"
                                        columnResizing="disabled"
                                        disableColumnReordering="true"
                                        styleClass="carttbl" var="row"
                                        rows="#{bindings.favAccountList1.rangeSize}"
                                        emptyText="#{bindings.favAccountList1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                        fetchSize="#{bindings.favAccountList1.rangeSize}"
                                        width="877" horizontalGridVisible="false"
                                        verticalGridVisible="false"
                                        rowBandingInterval="0" id="tblCart"
                                        binding="#{myAccShoppingCartBean.tblCartItems}"
                                        inlineStyle="border:1px solid #000000;overflow:hidden !important;">
                                <af:column sortProperty="productSizeId"
                                           sortable="false" visible="false"
                                           id="c239">
                                  <af:outputText value="#{row.productSizeId}"
                                                 id="ot2asdf"/>
                                </af:column>
    </af:table>
    <af:table value="#{myAccShoppingCartBean.favAccountList}"
                                        columnResizing="disabled"
                                        disableColumnReordering="true"
                                        styleClass="carttbl" var="row"
                                        rows="#{bindings.favAccountList1.rangeSize}"
                                        emptyText="#{bindings.favAccountList1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                        fetchSize="#{bindings.favAccountList1.rangeSize}"
                                        width="877" horizontalGridVisible="false"
                                        verticalGridVisible="false"
                                        rowBandingInterval="0" id="tblCart"                                 
                                        inlineStyle="border:1px solid #000000;overflow:hidden !important;">
                                <af:column sortProperty="productSizeId"
                                           sortable="false" visible="false"
                                           id="c239">
                                  <af:outputText value="#{row.productSizeId}"
                                                 id="ot2asdf"/>
                                </af:column>
    </af:table>How to show this list two times.
    any help is apprciated

    Hi ,
    Can I replace above posts table with iterator
    Can I set value attribute for different iterators same from the bean.
    like
    <af:iterator value="#{myAccShoppingCartBean.favAccountList}" id="i1">second one like
    <af:iterator value="#{myAccShoppingCartBean.favAccountList}" id="i2">How to solve this?
    Is there any way to set same value to the different Iterators on the same page

  • How to show a pic from a specific file

    Hi all i got a trouble here, well i stored pics in my database, well the function works ok when im trying to show a pic from the DataBase but my problem comes here when a pic is not found in the database i want to show a pic store in a file noPic.JPG here is my code
    try{
    sql="my select...."
    ConexionPool cp = new ConexionPool();
    ResultSet rs = cp.accesoBaseDatos(sql);
    InputStream inputStream=null;
    FileInputStream file= null;
    file = new FileInputStream("\\imagenes\\SinFoto.jpg");
    if(rs.next()){
    inputStream = rs.getBinaryStream(1);
    }else{
    file = new FileInputStream("\\imagenes\\SinFoto.jpg");
    ** after this is the problem i dont know how to put this file in an InputStram format **
    //rs.close();
    return inputStream;
    well i hope someone could help me how to convert a file into an InputStream or something like that, thanks

    Duplicate post: http://forum.java.sun.com/thread.jspa?threadID=609919

  • How to show the graphs from 16channels or more at one time

    Hi.
    I am using labview with pci-6031e board.
    Is there a efficient way to show the graph from 16 channels which acquire the temperature with thermocouple, or to show just one specific graph that I want.
    I followed these steps.
    1.in examples from the labview program,I`ve used the source of acquring the multi-temperatures.
    2. used the index array to devide each temp. and connected this to graph in the case structure.
    but it requred too many space,and doesn`t look good.
    Thank you .

    You can set a state machine doing the following: Put 17 controls, one for each temperature and one for all. Inside the case structure, wire one case for each temperature, bundling x and y arrays into a cluster, and then building an array (of 1 element). In the all case bundle each temperature and build an array of all. Put the array output into the graph... and it's done.
    Hope this will feed your needs, and if you want an example... just ask

  • When using the search function in mail I only see results from the current year. how can I see results from all years?

    When searching mail results only contain messages from the current year. I'd like to see results from all years. This just started after upgrading from Snow leopard to Lion.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • How to show a Image (from shell, python or what ever)

    Hi guys
    An Application written in c#/mono takes up to 7 seconds to start. So i was asked to do a little splash screen for it.
    I coul'd not figure out how to do it from shell and i couldn't find the pygtk bindings installed, so i did it quick and dirty in mono showing just an animated gif and killing the process after the applicaiton started.
    The problem with this Solution is that the splash screen itself takes up to 3 seconds to show up, which is quite long.
    Any idea how i could do it from shell or maybe in python or c? Thing is, i can't install any new libraries on that system so it has to be done with the very basic stuff that comes with the xserver.
    Window manager is fvwm. And i would like to stick with the animated gif, since i already have it.
    Lg, Archdove
    display (imagemagic) is probably installed. But how can i deactivate the window decorator? It would also help if i could just set the window title by my self since there is a rule (which i cannot alter or add one more) to do this for special windows.
    Last edited by Archdove (2012-01-25 19:05:38)

    Got it with the -title switch... don't know if it will help me tough
    I just keep updateing here... the tool animate has to be used to animate the gif.
    So what i still need to know is how i can set the exact position of the window to be shown.
    animate -geometry 100%+0+300 -delay 10 -title windowTitle loading14.gif - BÄM!
    Last edited by Archdove (2012-01-25 19:35:56)

  • After upgrading to OS 8.1.3 on iphone 5, suddenly all contacts have facetime and ring on both my ipad and iphone.  Went to Contacts and Facetime to Edit and delete, but no field to do so. How can I delete Facetime from all these contacts?

    After upgrading to OS 8 on my iphone 5, suddenly all my contacts had Facetime capabilities. I only want to FT with a few people Unwanted FT calls now ring on both my iphone and ipad. I tried to edit and delete FT capabilities in both Contacts and Facetime icon, but there is no field to delete for this. How do I delete Factime from my contacts list? thanks for any help with this.

    Hi Ingo 2711,
    Thank you for your suggestion.  I backup on itunes. I went to itunes, deleted syncing my contacts, then re-synced them. But the Facetime capability option continues to be there on most (not all, for some curious reason) of my contacts. I am not sure I posed my question correctly.  I want to be able to FT with my family, so don't want to delete the FT capability totally from my iphone and ipad. But I don't want all these other iphone calls from various contacts to ring on my ipad as FT calls.  I want a way to select with whom I have FT capabilities. Any further suggestions? Thanks much, trekpal

  • How to show Certificate Content from IE

    Hi,
    how to show Certificate Content Window from IE. I dont like to write it by myself;).
    Does anybody know if its posible?
    Regards

    Using Firefox, simply click the padlock.
    Suspect IE is much the same.

  • How to show the status for all CPU? Solaris 9 & 10 can support how many CPU

    Hi, may i know wat is the command to show all of the CPU status? i tried use "top" command, but could show all. Any Idea?
    And somemore, may I know Solaris 9 and 10 can support how many CPUs?
    thanks
    regards
    raymond

    What do you mean all of the CPU status?
    top shows you processes on all processors and for the currently running processes, it shows you which CPU a process is on.
    If you want separate stats for each processor, "mpstat 5" shows cpu usage and idle etc.
    As far as how many CPU's solaris supports.
    The largest machine Sun sells as far as I am aware is a E25K with 72 dual core CPU's
    for 144 cores. Is that big enough for you? You probably don't want to know the price though :-).

  • How to mute incomming sound from all callers when ...

    We sometimes transmit a meeting for worship to sick ones who dial in to listen. If they don't remember (or don't know how to) mute their microphones we get feedback through the PA because the laptop headphone socket is fed into the PA to play music.
    Is there a button I've not yet seen in Skype that will "Mute all incomming sound from callers"?

    I've never tried this but I think its what you are after.
    On the skype menu, go to Tools and then Options
    Select Sounds
    The is an option to Mute all sounds - this should stop any incoming sound including erroneous cam and mic audio from all callers and I think will allow your outgoing sound to transmit ok.

  • How to exclude a task from ETL container

    Hi
    I am running Full ETL load for Oracle Financials R12.1.3 Vision instance, where one of the task is failing and due to that some 86 subsequent tasks are also failing.
    The task name is SDE_ORA_ProductDimension.
    I an suggested by Oracle Support to exclude that task from EP.
    Can someone tell me that how to exclude that from available Container, EP?
    OBIA release is 7.9.6.4 and Informatica 9.1
    You can find the details log of error here http://pastebin.com/hZRHJssi
    Thanks
    Naeem Akhtar
    Edited by: Naeem Akhtar Khan on Feb 28, 2013 8:44 PM

    Hi,
    do you make a copy of a predefined container ?
    You cannot modify objects in the predefined source system containers either through the DAC Client or directly through SQL statements to the DAC repository. You must make a copy of a predefined container in order to make any changes to it.
    You could see how to create a copy of a predefined container in the Oracle DAC documentation : http://docs.oracle.com/cd/E25178_01/fusionapps.1111/e14849/dacquickstart.htm#BABJIIBB
    Hope it helps,
    Benoit

  • BlackBerry 10 - how to view completed Tasks from within Calendar

    How to view completed Tasks entered in Remember, but viewing not just active tasks but completed tasks from within the Calendar? Thank you.

    Hi sandy1729,
    Welcome to Apple Discussions
    You don't say which iPod it is but I have a nano - to check the battery indicator when charging I turn the nano off, then the battery indicator fills the whole screen instead of just the bit at the top right.
    See the pictures here:
    http://docs.info.apple.com/article.html?artnum=60970
    Regards,
    Colin R.

  • How to show Account Group from R/3 in CRM webclient?

    Hi,
    I'm trying to show Account Group from R/3 in CRM webclient.
    Anyone now where can I find it?
    Thanks

    Hello Rui,
    If you want to set the account group from CRM, there is a filed named ACCOUNT GROUP under the CONTEXT NODE MARKETING in the VIEW AccountDetails. Add it to your Configuration Tool and you will see it in the UI.
    Best regards,
    Maggie

  • How to access Google Tasks from my playbook

    Hello I'm trying to access Google Tasks from the browser but I haven't been able to do so, do any one of you know? thanks.
    Peter Escamilla
    Solved!
    Go to Solution.

    NVM I just found there are two links that work
    https://mail.google.com/tasks/android
    https://mail.google.com/tasks/canvas
    thou I would rather the first one thank you all

Maybe you are looking for