In p6 8.2,I can't filter resources or role to resources planning

in p6 8.2,"resources"section,"planning"page,"filter and group by" ,I open a dialog windows to select portfilos,projects,roles or resources ,but after I click the button"OK",the application have no changes, it also not retrun to the "planning" page and display the content about the resources that i selected.
the screenshot url is : http://p13.freep.cn/p.aspx?u=v20_p13_photo_1202140017531921_0.png
Edited by: 914151 on 2012-2-13 上午8:22

  This is caused by the default security policy which blocks file sharing with unidentified networks by making them public. (How it determines unidentified networks is another interesting question). To allow file sharing, you have to change the local
security policy to allow unidentified networks to be private. 
Local Security Policy | Network List Manager Policies |Unidentified Networks 
Bill

Similar Messages

  • Can not filter the data with the extended class

    Hi,
    I have a quick question about PortableObject format. I have created a class which extends PortableObject interface and implemented serializer methods as well. I have updated it in the pof-config.xml file as well. If I insert the objects of this type of object in the cache, they get inserted properly and I can filter the values based on the getters defined in the class. Everything works fine here.
    Now, I am trying to extend the existing class that I have. We have our custom API which we have built for our domain objects. I need to store these objects in the cache. So, naturally I need to implement PortableObject interface to do that. So, instead of creating a new class with new set of getters and setters and local fields, I am extending our domain class to create a new class which implements PortableObject interface. Instead of defining the local fields and getters and setters i am reusing the ones provided by my existing class. Now, I can insert the objects of the new class to the cache. But I can not filter the values for the objects of this new class.
    Let me show you what exactly I am trying to achieve by giving a small example:
    Domain Class:
    class Person
    private String person_name;
    *public String getPerson_name() {return person_name;}*
    *public String setPerson_name(person_name) {this.person_name = person_name;}*
    The new class implementing PortableObject interface:
    class ExtPerson extends Person implements PortableObject
    public static final PERSON_NAME = 0;
    *public void readExternal(PofReader reader) throws IOException{*
    setPerson_name(reader.readString(PERSON_NAME));
    *public void writeExternal(PofWriter writer) throws IOException{*
    writer.writeString(PERSON_NAME, getPerson_name());
    *// And HashCode, Equals and ToString methods, all implemented using the getter from the Person class*
    So, if I create a new class ExtPerson without extending the Person class and write all the methods, store the objects in the cache and perform the following query, I get the size printed
    System.out.println((cache.entrySet(new EqualsFilter("getPerson_name","ABC"))).size());
    But if I use the extended class and insert the values into the cache and if I use the same query to filter, I get 0 printed on the console.
    System.out.println((cache.entrySet(new EqualsFilter("getPerson_name","ABC"))).size());
    So, can anyone tell what exactly is causing this?
    Thanks!

    Well, just a quick question. It seems that I can not get ContainsAnyFilter or ContainsAllFilter working.
    EqualsFilter is actually working properly.
    I am preparing a Set of Strings and passing it to ContainsAnyFilter or ContainsAllFilter and it is returning me 0 records.
    E.g.:
    Set<String> setStr = new HashSet<String>();
    setStr.add("ABC");
    setStr.add("DEF");
    System.out.println((cache2.entrySet(new ContainsAnyFilter("getPerson_name", setStr))).size());
    I get 0 in my output
    If I try this:
    System.out.println((cache.entrySet(new EqualsFilter("getPerson_name","ABC"))).size());
    System.out.println((cache.entrySet(new EqualsFilter("getPerson_name","DEF"))).size());
    I get 1 for each of the query.
    If I club all these EqualsFilter in a Filter[] array and create an AnyFilter or AllFilter and pass it to the query, it works fine.
    List<Object> lst = new ArrayList<Object>();
              lst.add("ABC");
              lst.add("DEF");
    Filter[] filter = new Filter[lst.size()];
         for(int i=0;i<lst.size();i++)
              filter[i] = new EqualsFilter("getPerson_name",lst.get(i).toString());
    AnyFilter fil = new AnyFilter(filter);
    System.out.println((cache4.entrySet(fil)).size());
    I get the desired result here, which is 2.
    Am I missing something here?

  • I keep getting exact duplicate songs in playlists and libraries, how can you filter this out when upgrading these lists, or sync to the same device again? And how to do it without going through each and every P'list or Library ?

    I have Windows XP-Pro SP3, the latest upgrades of Three media players, iTunes being the default player. I keep getting duplicates in playlists, libraries etc., of the same version of song. Everytime i make a change or renew my media to device or SYNC it wants to add duplicates to the computer disk, lists etc. Can you filter out same copies without having to edit each and every song, which in my case is quite large. For instance if you want to convert all mpeg, or mp4-a files to AAC you will end up with duplicates of each file type. Or you sync to an ipod, the library adds to itself---- including copies of songs already in it, if in a different file version.

    Your refer to:
    " if you want to convert all mpeg, or mp4-a files to AAC "
    This will always duplicate files within iTunes.  I need to ask why you're doing this conversion - all formats are compatible with iTunes, and conversion between mp3 and AAC will always involve some loss of quality.

  • Can I filter the table being profiled in the Data Profiling task, or know of a work around? SSIS2008r2

    Hi,
    I import several files into a staging table.  Inside a foreach loop, after the data flow task I have a Data Profiling task that profiles the table so we can give feedback to those who sent us the file.
    I just relalized that after the first loop, there is more than one file in the staging table, hence more than one file is being profiled.
    At first glance it doesnt appear I can add a "Where" clause to the table.  I do have a column that states which file the data came from, but with only being able to profile a view or table, I can't filter.
    Anyone have any ideas?
    Mike

    Catching outliers seeing how much of what kind of data exist, deviations, distribution, you get some sort of a historgram in essence with the Data Profiling.
    It is normally a preamble to doing data ingress (or egress) into a new target.
    Now patterns are in Fuzzy Lookups/matching or grouping. Having RegEx used is hard in SSIS! I admit, I proposed to have it included into SSIS VNext. I remember there was a component or two on CodePlex:
    http://ssisctc.codeplex.com/ see if any makes sense, I recall I tried one just out for fun.
    Arthur My Blog

  • How can I filter a table from Data Control without enter query

    I have a table from a web service data control based on WSDL.
    I want to filter the table without input query at filter text box. Without filter text box, each would filter the table with a hardcoded query internally.
    For example, when user click A menu button then it filters the table where type = '1' and B menu button filters the table by type='2' and C menu button filters the table by type=' ' .
    How can I filter the table without enter query?
    Could anyone point me to a solution please.
    Thanks.
    jdev 11.1.5
    Edited by: 893364 on Oct 26, 2011 12:15 PM
    Edited by: 893364 on Oct 26, 2011 12:21 PM

    Hi,
    when you created the table, did you try selecting the "filter" option. Select the table and go to the Property Inspctor. In the tool bar of the Property Inspector there is an icon to change the configuration. Its adding filter filter fields for the user to search in.
    Option 2: The data of the Web Service actually is held in the iterators. If you wanted to filter the WebService query, I would not use the WS DC but a JAX-WS proxy in a POJO to fetch the WS Data. Then have the Data Control created from the POJO. You could have a method exposed on the POJO that allows you to filter the internally held data
    Frank

  • Can you filter a custom report by postcode?  I want to send an email marketing campaign to customers

    Can you filter a custom report by postcode?  I want to send an email marketing campaign to customers within a postcode range.  How do you do this? Thanks.

    Hey RP in Oz,
    You can run a contacts report and select 'Default Address Type' as an 'Address Details Field' which will include the zip code a customer has inputted. You can then export the report, open it up in Excel (or similar) and filter based on the postcode. Once you have modified the list in excel, formatted it correctly and are satisfied, you can then import the report as a mailing list via E-Mail Marketing > Mailing Lists.

  • How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

  • How can I filter facebook widget feeds ?

    hello everybody
    I've started using social widget on my nokia C7, it's really nice. I want to set the widget to render updates from specific network / friend list  as I am a member in a lot of pages and have more than 400 friend. So whenever I connect to the internet I get flooded by a lot of unimportant updates and the important ones are lost in this crowd
    may someone tell me how can I filter updates ?
    Thanks

    Hi flegno,
    Depending on which version that Firefox is on, currently in the Simulator is looks like there is only a way to pin the apps that result in a searched category. Searching for people in contacts who have a particular app installed does not seem to be an option? However I cannot know for sure.
    Can you give another example on what you are looking for everything.me to do?

  • FAQ: Can I filter the photos to show just those taken by someone, or liked, or commented on?

    FAQ: Can I filter the photos to show just those taken by someone, or liked, or commented on?
    Answer:
    Yes, GroupPix can show you just subsets of photos at a time.
    To see just the photos from a particular person,
    iOS: go into full screen view for a photo, then tap that person's name; you will see a grid showing only those photos contributed by that person.
    Android: go into an event, select the menu under the Event name, and tap 'Photographer' to show a list of contributors to an event. Tap a person to see their photos.
    To see photos that are liked or have comments, tap the Filter button in the upper-left of the screen. Then, choose just Liked Photos or Commented Photos.
    Tap the back arrow to return to full the Group Album.

    FAQ: Can I filter the photos to show just those taken by someone, or liked, or commented on?
    Answer:
    Yes, GroupPix can show you just subsets of photos at a time.
    To see just the photos from a particular person,
    iOS: go into full screen view for a photo, then tap that person's name; you will see a grid showing only those photos contributed by that person.
    Android: go into an event, select the menu under the Event name, and tap 'Photographer' to show a list of contributors to an event. Tap a person to see their photos.
    To see photos that are liked or have comments, tap the Filter button in the upper-left of the screen. Then, choose just Liked Photos or Commented Photos.
    Tap the back arrow to return to full the Group Album.

  • How can I filter or block foreign language emails or email addresses

    How can I filter or block foreign language emails or email addresses??
    TIA
    C

    Most email clients have a provision to create a 'rule'. The rule examines the email as it is received. In generally you can search for specifically senders, recipients,subjects, or specific content words in the body. Based upon the findings of the rule, you can do something with the email (such as end it directly to the Trash).
    For example if you know where all of valid you emails come from, you can create a rule that checks the from field for an acceptable sender and sends those email's that to the inbox, while sending all emails from other senders to the trash or spam folder
    Keeping out foreign language emails is often difficult because because often it is difficult to come up with a rule that will catch them on the basis of language they are written in.
    There are also commercial products that can scan incoming email and 'score' the email based upon content, and you decide at what 'score'  you want the mail sent straight to the trash or spam folder. Verizon's spam filter does this based upon Verizon's scoring system, and actually does catch a lot of spam. It also occaisonally catches things that are not spam however....
    Hope that is helpful

  • Can I filter News or Events by time (so that past items disappear from listings)?

    Can I filter News or Events by time (so that past items disappear from listings)?

    Thanks for your reply. I'm trying to find a way to divide events into two lists, "forthcoming" and "past events" which will automatically work without too much work for my client. If I set an event to "expired" is it still in the database and if so, can I list all expired events?
    Regards

  • Can I filter by value which is not displayed in grid columns?

    In excel it is possible to filter by value of measure which is not displayed in the report.
    How can I possibly do this in Performance Point Grid? (in filter by value there I only see the measures in columns).
    Please advise
    Namnami

    I found it is possible to filter by value by changing the MDX in the query tab.
    (I filtered by certain existing value in design, then switched to Query and changed to the measure which is not displayed). I shows up correctly.
    The problem is, once I change the query, I get an error when tring to connect a filter on a grid column:
    "consumer parameter no-longer exists in the consumer webpart"
    The grid looks "frozen"- cannot drill up / down etc.
    How can I filter by value which is not displayed without loosing the ability to attach a filter to the grid?
    Namnami

  • How can I filter alerts shown in the Server app?

    In the time I've been running OS X Mavericks Server, the only alert to come up in the Server app's Alerts pane is "Virus detected in inbound email". That's about as surprising as finding that water is wet, so I'd like not to see those alerts. I don't want to turn off the email filtering, I just want don't want to hear about this one kind of event.
    How can I filter the alerts in general or this one in particular?

    Hi ephraimephraim
    I dont know if you found a solutions, but I hit the same problem so here is what I worked out...
    Go to: Mac HD/Library/Server/Mail/Config/amavisd
    In there you will find a file called amavisd.conf
    Make a backup copy of this just incase! Now open the file using TextWrangler (its free from here http://www.barebones.com/products/textwrangler/download.html).
    Now scroll down to line 119 and it will look like this:
    #$virus_admin              = "[email protected]";  # notifications recip.
    #$spam_admin               = '[email protected]';
    #$spam_quarantine_to       = '[email protected]';
    #$banned_quarantine_to      = '[email protected]';
    #$virus_quarantine_to      = '[email protected]';
    What I waneted to do was stop the useless "Virus detected in inbound email" emails and just send a copy of the emails to one account that I could keep an eye on, so this is what I did.
    First deside on a alias to use, such as [email protected],
    Now you can insert that like this virus-admin\@$mydomain its relly is important to add the \@$mydomain this resolves up the top of the file so it should now look like this
    #$virus_admin              = "virus-admin\@$mydomain";  # notifications recip.
    #$spam_admin               = 'virus-admin\@$mydomain';
    #$spam_quarantine_to       = 'virus-admin\@$mydomain';
    #$banned_quarantine_to      = 'virus-admin\@$mydomain';
    #$virus_quarantine_to      = 'virus-admin\@$mydomain';
    now delete the # notifications recip. after the virus_admin to stop the Virus Notifications, then I deleted the # before the spam_quarantine_to, banned_quarantine_to, virus_quarantine_to  this "turns on" the line and then add # notifications recip. after them, so you should end up with
    #$virus_admin              = "virus-admin\@$mydomain";
    #$spam_admin               = "virus-admin\@$mydomain";
    $spam_quarantine_to       = "virus-admin\@$mydomain";  # notifications recip.
    $banned_quarantine_to      = "virus-admin\@$mydomain";  # notifications recip.
    $virus_quarantine_to      = "virus-admin\@$mydomain";  # notifications recip.
    Now just create a user on the server called virus-admin of add it as an alias using Workgroup Manger.
    Hope this helps

  • Can you filter iTunes search results by video or audio podcasts?

    I have been searching for hours and haven't found a definite answer. Anyone know if this is possible?
    Can you filter iTunes search results by video or audio podcasts?

    I'm having the same problem. I go to Podcasts/Video Podcasts/News and they only give the featured, favorites (whose?), etc. I want to see all video news podcasts but if I then click on see all, it drops the video classification and shows all news podcasts. The iTunes search in general leaves a lot to be desired; its not very intuitive or pleasant to use, not the usual Apple experience.

  • Can I filter out "hollow" sound?

    I recorded a voice intro and some "noodling" for my guitar instructor to up on his website, but there's just a bit of a hollow sound to his spoken intro and to his guitar playing. Is there an easy way to filter that in Garage Band? I'm pretty new to GB and have barely used it.

    peterfrombungendore wrote:
    Can I filter out vocals from an audio track, imported from a CD
    http://www.bulletsandbones.com/GB/GBFAQ.html#removevocals
    (Let the page FULLY load. The link to your answer is at the top of your screen)

Maybe you are looking for

  • Openshot and kdenlive render without sound

    Hi It has been a long time [a few months] since I have not used Kdenlive. When I rendered a movie with a mp3 sound track [ songs especially ] I got the film with this sound track. Now are occuring 2 things: The final movie is without sound [during th

  • I want to burn photos to a dvd disc.  I have done this before.  Error message coming up.  There is enough room on disc.

    I am trying to burn photos from my library to free up space on my mac.  I am down to 13 gb.  Every time I burn a dvd with a couple of hundred pics it comes up "burn failed" optic drive.  I have burned in the past.  What is the problem?

  • IPod Nano 2gen recognition issue!

    Ok, my girlfriend got a 2nd gen ipod nano and is computer illiterate. SO, she thought hey, i'll just give it to my friend to load songs on. So the first time that it was connected to a computer was on her friends computer. then i went over and instal

  • HP Mini 110 - No audio after replacing hard drive and installing XP

    My wife's Mini 110 recently died and I had to replace the hard drive.  I got everything up and running fine except for the audio.  The driver on the HP site for the 110 will not install as it says that there is no device installed for that driver.  I

  • Is there a way to make suggestions to Apple?

    With the iPhone being so popular and many reports of it being stolen, the Find My iPhone can be a great feature.    Except that the perp can turn it off!!!  What good is the feature then?   How can I suggest to Apple that they put a pass code lock or