Filter not working in new and old task lists (new farm)

I noticed this after migrating some sites from our current production environment. Even when creating a new task list the filter will not work, however if I make a custom list and add the existing Assigned To column, the [Me] filter will work.
This is starting to drive me nuts, any help would be appreciated.

This is a bug in the March 2015 CU. I have an open case on it, where MSFT is able to repro it. This is just a workaround and hopefully the issue will be resolved in the future. It only impacts Tasks lists.
As to doing it to all Task lists, no I'm unsure of how to accomplish that.
Trevor Seward
Follow or contact me at...
&nbsp&nbsp
This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Similar Messages

  • I changed my apple ID & now the iMessage is not working neither with the old nor the new ID

    I changed my apple ID & now the iMessage is not working neither with the old nor the new ID

    Sorry to ask an obvious Question, but have you signed out in iMessage and iTunes store on your iPad then logged in with the new ID/Password?
    It may be that the iPad is remembering your old login in one part of the iPad.

  • One speaker of my i phone 4s does not working any more and my phone still new ?

    One speaker of my i phone 4s does not working any more ? and it s still new !

    There is only one speaker, other side is microphone. You
    may wish to download and become familiar with the user guide.
    It is a link in Safari on your iPhone, you can download the user
    manual after you download iBooks app, or you can find it here:
    http://support.apple.com/manuals/#iphone

  • IPod nano version 6:  random turn off, volume controls don't work, does not turn off, skip does not work.  Two years old!  Next version of nano has no clip and same amount of storage.  I do not want to give up my version 6!

    iPod nano version 6:  random turn off, volume controls don't work, does not turn off, skip does not work.  Two years old!  Next version of nano has no clip and same amount of storage.  I do not want to give up my version 6!

    Make a Genius Bar appointment at your nearest Apple Store and pay $75 USD for an out-of-warranty replacement.

  • I recently upgraded my old powerbook to an iMac.  I've dumped the files of my backup drive into the new iMac. Is there a way to have access to all the files (new and old computers) when logged on as the same user vs. logging in and out to access each?

    I am new to posting to this support community but have often referred to it for answers.  So thank you all who've contributed; you've been a great help!
    I recently upgraded my old powerbook to an iMac.  I've dumped the files of my backup drive into the new iMac. Is there a way to have access to/merge all the files (new and old computers) together so when I'm logged in can access all the files.
    Thanks!
    M

    Sure-glad to help you. You will not lose any data by changing synching to MacBook Pro from imac. You have set up Time Machine, right? that's how you'd do your backup, so I was told, and how I do my backup on my mac.  You should be able to set a password for it. Save it.  Your stuff should be saved there. So if you want to make your MacBook Pro your primary computer,  I suppose,  back up your stuff with Time machine, turn off Time machine on the iMac, turn it on on the new MacBook Pro, select the hard drive in your Time Capsule, enter your password, and do a backup from there. It might work, and it might take a while, but it should go. As for clogging the hard drive, I can't say. Depends how much stuff you have, and the hard drive's capacity.  As for moving syncing from your iMac to your macbook pro, should be the same. Your phone uses iTunes to sync and so that data should be in the cloud. You can move your iTunes Library to your new Macbook pro
    you should be able to sync your phone on your new MacBook Pro. Don't know if you can move the older backups yet-maybe try someone else, anyways,
    This handy article from Apple explains how
    How to move your iTunes library to a new computer - Apple Support''
    don't forget to de-authorize your iMac if you don't want to play purchased stuff there
    and re-authorize your new macBook Pro
    time machine is an application, and should be found in the Applications folder. it is built in to OS X, so there is nothing else to buy. double click on it, get it going, choose the Hard drive in your Time capsule/Airport as your backup Time Machine  and go for it.  You should see a circle with an arrow on the top right hand of your screen (the Desktop), next to the bluetooth icon, and just after the wifi and eject key (looks sorta like a clock face). This will do automatic backups  of your stuff.

  • Using dbms_xmlgen.getxml with new and old tables in triggers

    Is there a way to use getxml against the data stored in the new and old tables in a trigger? Simply doing this:
    Xml_Variable := dbms_xmlgen.getxml('Select * from New');
    Does not work.
    Edited by: user13302591 on Jun 16, 2010 1:16 PM

    user13302591 wrote:
    How would I pass the information from the :new and :old to getxml?What are you trying to do? You could use, for example:
    XMLELEMENT("old",:old.column_name)
    XMLELEMENT("new",:new.column_name)SY.

  • Dynamic build of a table trigger - Issue building :new and :old vars

    (which leads me to my next issue - this one might be a deal killer for me; see "Are Optional Parameters possible in Procedural Units?"
    I'm using a Select statement to dynamically create a table trigger which looks like the following:
    create or replace trigger tr_audit#reporter
    after update on reporter
    for each row
    begin
    ttms_audit_pkg.insert_audit_info( 'reporter', 'ZIP', :new.ZIP, :old.ZIP, 'REPORTER.REPORTER,REPORTER.PROJECT_CD', 'EXFC', :new.reporter, :new.project_cd);
    end;
    The :new. and :old. variables are generated based on which table_name is passed to the script creating this trigger. My problem is that I need all the :new. and :old. parameters to be passed in as Char. regardless of whether they are Number or Date variables.
    So in the example above...if :new.reporter is a number on the table then I need to to_char is like this:
    create or replace trigger tr_audit#reporter
    after update on reporter
    for each row
    begin
    ttms_audit_pkg.insert_audit_info( 'reporter', 'ZIP', :new.ZIP, :old.ZIP,
    'REPORTER.REPORTER,REPORTER.PROJECT_CD', 'EXFC', to_char(:new.reporter), :new.project_cd);
    end;
    However, since this trigger is created dynamically I will not know in advance which :new. and :old. parameters will need to be converted to character. So if to_char(:new.reporter) is used and :new.reporter is already a character on the table then I will get an error.
    So my question then is this. Is there a way to write this dynamic sql in a way to accomidate this problem? I'm thinking something that would act a bit like a decode does with values...pehaps something like this:
    decode(:new.reporter, NUMBER, to_char(:new.reporter), DATE, to_char(:new.reporter,'DD-MON-YYYY HH12:MIPM'), :new.reporter)
    ...if :new.reporter is a number then to_char it; if :new.reporter is a date then to_char it; otherwise let it be.
    By any chance does anyone know if this is possible? I would greatly appreciate any insights.

    Sure, you can selectively version-enable tables using Workspace Manager (you call DBMS_WM.EnableVersioning on each table you want Workspace Manager to track history for).
    What do you mean by "programmatically rollback changes"? Workspace Manager has the ability to call GotoTime and queries against a version-enabled table will return results as if you were querying it at that specific point in time (unless you've purged history of course). You can also use it to create what are essentially long-running transactions where you can work on multiple sets of proposed data changes simultaneously for days or months before finally deciding to commit a one particular set. It's incredibly powerful.
    Justin

  • I update my iphone 4g .now not working how to find old firmware version

    i update my iphone 4g to newer version ios 7.now not working how to find old firmware version

    Downgrading the iOS version is not supported by Apple.
    Without know how it is not working:
    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                                              
    BTW you posted in the iPod touch forum

  • :NEW and :OLD

    We use OWM (oracle workspace manager) -- means we have to use beginDDL and CommitDDL to alter a table. To avoid this whenever we need to change the business logic on trigger, we create package to hold the logic and call the package from trigger.
    My question is, is there a way to pass :NEW and :OLD as row variable? It seems it can be only referenced as :NEW.ID, not just :NEW as a variable.
    pkg_xxx (:NEW, :OLD) will fail. and I can't do this either: rowREC := :NEW;
    Currently we're doing this: rowRec.ID := :NEW.id; rowRec.Name := :NEW.name; pkg_xxx(rowRec);
    So if the table structure changed then the trigger has to be changed too because the column names are referenced in the trigger.
    It's very appreciated if you know a way to do this.

    "The package specification also has a subtype which is <tablename>%ROWTYPE;
    You can pass variables of that subtype as a parameter to the procedure."
    This is exactly what we're doing. But before you pass the subtype as a parameter you have to fill in each field, and that's what I want to avoid.
    If I can't use :NEW as a row, the only way I can think of is generate dynamic sql and grab the column name at run time. I was hoping there's a way to use :NEW directly because it will impact performance if a proc is used to gerenated the dynamic sql to fill in the fields, then call another package to do the real work.
    Thanks for the reply!!

  • Using correlation names :new and :old in ODBC

    Does anyone know how to use correlation names :new and :old through an ODBC connection?
    EG:
    CREATE TRIGGER Print_Cust_changes
    BEFORE INSERT ON CUST_tab
    FOR EACH ROW
    BEGIN
    dbms_output.put('Adding: ' || :new.custid);
    END;
    When I try to do that using ODBC, I get this error:
    Server Msg: 24344, State: HY000, [Oracle][ODBC][Ora]
    Trigger, procedure or function created with PL/SQL compilation error(s).
    And if I try and Insert I get:
    Server Msg: 4098, State: HY000, [Oracle][ODBC][Ora]
    ORA-04098: trigger 'BCL.PRINT_CUST_CHANGES' is invalid and failed re-validation
    The same code works perfectly in SQL*Plus.

    The plot thickens...
    I just tried this code:
    CREATE OR REPLACE TRIGGER Print_Cust_changes
    BEFORE INSERT ON CUST_tab
    FOR EACH ROW
    BEGIN
    INSERT INTO CUST_LOG VALUES('X');
    END;
    And received the same error:
    Server Msg: 24344, State: HY000, [Oracle][ODBC][Ora]
    Trigger, procedure or function created with PL/SQL compilation error(s).
    Again, using the same code (Cut & Paste) in SQL*Plus, it works without any problems.
    The ODBC function being used is: SQLExecuteDirect(), ODBC driver is SQLORA32.dll v9.02.00.00
    CREATE TABLE, VIEW, INDEX etc, all work fine, but not a trigger. If I read the code back from ALL_TRIGGERS after using SQL*Plus or the console application to create the trigger, it is exactly the same code...

  • Since I have upgraded to Firefox 4.0.1, it has been constantly freezing up. Now it does not work at all and I am unable to remove my profile. How can I remove my profile if Firefox does not work?

    I finally got so tired of Firefox freezing my computer that I tried to uninstall and reinstall. Upon reinstall, it will not work at all and I am unable to delete my old user profile. Is there any way to get rid of this profile so I can give one last attempt to get Firefox to work before switching permanently to Google Chrome? I really liked Firefox for years until they screwed it up with the recent changes.

    Try running Firefox in [[Safe Mode]]. If it functions properly in that configuration, then one of your add-ons is the culprit.

  • My iPad2 is not working after an unsuccessful update to the new iOS6. How do I get working?

    My iPad2 is not working after an unsuccessful update to the new iOS6. How do I get working?

    - Try resetting the iPod. Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Download/install a new app
    - Restore from backup
    - Restore to factory daults/new iPod.

  • Flash buttons not working in IE7 and Chrome

    Here's my website where the problem is occuring www.bakercreative.co.uk
    As you can see the Flash buttons animate, but when clicked they should go to a new html page.
    I've tested it in IE8 and Firefox without any problems but it's not working in IE7 and Chrome.
    Does anyone know what the problem is? Could it be the html code or the flash file itself?
    Thanks

    Hi, Glad you were able to solve that issue with the buttons and Chrome. Any small thing can cause big problems!! LOL
    I'm sure IE7 will test out ok, IE6 did Your website is very nice and has a variety! I hope it all comes together for you.
    Thanks,
    eidnolb

  • Do I have to buy Lion or snow lepoard or is there a way to updated from OS X 10.4.11?? I have a new ipod that will not work without the ne itunes, but the new itunes will not install without a newer vesion of Max OS X. Help please :)

    Do I have to buy Lion or snow lepoard or is there a way to updated from OS X 10.4.11?? I have a new ipod that will not work without the ne itunes, but the new itunes will not install without a newer vesion of Max OS X. Help please

    Need to know your Mac model. If it's a PowerPC, the max OS is Leopard 10.5.x. If it's an Intel procesor, you can upgrade to Snow Leopard (for $29) & later to Lion.
    *Mac OS X 10.5 Leopard installation system requirements*
    http://support.apple.com/kb/TA24950
    Leopard is no longer available at the Apple Store *but may be available by calling Apple Phone Sales @ 1-800-MY-APPLE (1-800-692-7753)*.
    Installing Mac OS X 10.5 Leopard
    http://support.apple.com/kb/HT1544
    Mac OS X 10.5 Leopard Installation and Setup Guide
    http://manuals.info.apple.com/en/leopard_install-setup.pdf
    After you install the base 10.5, download & install the 10.5.8 combo update at http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update
     Cheers, Tom

  • In "Show more Bookmarks" if I right click does not work (I want to open in a new tab)

    This is using Mac Firefox current version. I use lots of tabs and don't have space for all of them so there is a >> at the right end for clicking and displaying the rest of them. If I click and display list and highlight one of them, the right click does not work - I want to open in a new tab not use the existing - there are no menu options displayed on these tabs. The tabs across the top work fine for this

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Unable to open reports listed in Workspace

    Hi All, I am using EPM 11.1.1.1.0 . I have created a few reports from the Financial Reporting Studio. And i have a user who has the "Administrator" provision for "Reporting and Analysis". When i log into workspace with this user id i get the "Explore

  • Unable to close down account

    I have been trying to cancel and close down my account - Adobe are not helping the situation. All I get is an email back saying I have to log onto an account web site where my request is listed - on logging on it is not there.  WHY CANT ADOBE JUST DO

  • Jdeveloper 11.1.2.4.0 - EJBModule exception

    After upgrading to Jdeveloper 11.1.2.4.0 ,I am getting the below exception on generating the webservice for a database procedure api. It works fine with the previous version. <Failure occurred in the execution of deployment request with ID '136794437

  • Using Air 2 as a java front end in a project idea

    I watched this video on adobe tv where this guy called java process through air 2's new process invoking methods, and what I wanted to do was something simular. I have a java project that interacts with JBDC to talk to the oracle database, and curren

  • Read local folder, return filenames into internal table

    Assume I have 3 files in c:\abc folder: a1.xls a2.xls a6.xls Is there a fm or code sample to pass in folder name (ie c:\abc) and returns a1.xls, a2.xls and a6.xls into internal table?