Defaut view + defaut filtering

This is the data source in xml.
<?xml version="1.0" encoding="UTF-8"?>
<dataroot xmlns:od="urn:schemas-microsoft-com:officedata" generated="2011-06-04T14:21:45">
<Product>
<ID>101</ID>
<Name>Old Book</Name>
<Price>10</Price>
</Product>
<Product>
<ID>105</ID>
<Name>New Book</Name>
<Price>20</Price>
</Product>
<Product>
<ID>110</ID>
<Name>Video Tape</Name>
<Price>25</Price>
</Product>
<Product>
<ID>112</ID>
<Name>Video Game</Name>
<Price>30</Price>
</Product>
<Product>
<ID>130</ID>
<Name>Candy Bar</Name>
<Price>5</Price>
</Product>
</dataroot>
This this the MainWindow.xmal
MainWindow.xmal
<Window x:Class="FilterText.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
x:Name="Window"
Title="MainWindow"
Width="374" Height="190">
<Window.Resources>
<DataTemplate x:Key="ProductTemplate">
<StackPanel Orientation="Horizontal" Width="305.56">
<TextBlock Text="{Binding XPath=ID}" Margin="10,0,0,0"/>
<TextBlock Text="{Binding XPath=Name}" Margin="10,0,0,0"/>
<TextBlock Text="{Binding XPath=Price}" Margin="10,0,0,0"/>
</StackPanel>
</DataTemplate>
</Window.Resources>
<Grid x:Name="LayoutRoot" DataContext="{Binding Source={StaticResource ProductData}}">
<ListBox x:Name="myListBox" ItemTemplate="{DynamicResource ProductTemplate}" ItemsSource="{Binding XPath=/dataroot/Product}" Margin="8,8,8,0" Height="90" VerticalAlignment="Top"/>
<TextBox x:Name="myTextBox" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Bottom" Margin="8,0,8,30.04" d:LayoutOverrides="VerticalAlignment"/>
<Button x:Name="filterBtn" Content="Filter" VerticalAlignment="Bottom" Margin="142,0,141,4.08" Click="filterBtn_Click_1"/>
</Grid>
</Window>
MainWindow.xmal.cs.
//In real life, the XML data source is big.
//Due to performance issue, view needs to be filtered before it is loaded into myListBox.
//So I put the filtering logic under InitializeComponent().
//No compiling Error message. But the program does not run.
using System;
using System.ComponentModel;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace FilterText
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
//In real life, the XML data source is big.
//Due to performance issue, view needs to be filtered before it is loated into myListBox.
//So I put the filtering logic under InitializeComponent().
//No compiling Error message. But the programe does not run.
public MainWindow()
InitializeComponent();
ICollectionView view = CollectionViewSource.GetDefaultView(myListBox.ItemsSource);
view.Filter = X => ((XmlElement)X)["ID"].InnerText.Contains("101");
private void filterBtn_Click(objecventArgs e)
ICollectionView view = CollectionViewSource.GetDefaultView(myListBox.ItemsSource);
view.Filter = X => ((XmlElement)X)["ID"].InnerText.Contains(myTextBox.Text);

Hi Richard,
>>Due to performance issue, view needs to be filtered before it is loaded into myListBox
We could create XmlDataProvider from code behind and handle
DataChanged event, in this event, filter and set binding for ListBox:
XmlDataProvider xdp;
public MainWindow()
InitializeComponent();
xdp = new XmlDataProvider() { Source = new Uri(AppDomain.CurrentDomain.BaseDirectory + "product2.xml"), XPath = "/dataroot/Product" };
xdp.DataChanged += xdp_DataChanged;
this.Cursor = Cursors.Wait;
void xdp_DataChanged(object sender, EventArgs e)
ICollectionView view = RefineList();
if (view.Filter == null)
view.Filter = delegate(object item)
return ((XmlElement)item)["ID"].InnerText.Contains("101");
else
view.Filter = null;
Binding newBinding = new Binding();
newBinding.Source = xdp;
myListBox.SetBinding(ListBox.ItemsSourceProperty, newBinding);
this.Cursor = Cursors.Arrow;
ICollectionView RefineList()
DataSourceProvider provider = (DataSourceProvider)xdp;
return CollectionViewSource.GetDefaultView(provider.Data);
XAML:
<Window.Resources>
<DataTemplate x:Key="ProductTemplate">
<StackPanel Orientation="Horizontal" Width="305.56">
<TextBlock Text="{Binding XPath=ID}" Margin="10,0,0,0"/>
<TextBlock Text="{Binding XPath=Name}" Margin="10,0,0,0"/>
<TextBlock Text="{Binding XPath=Price}" Margin="10,0,0,0"/>
</StackPanel>
</DataTemplate>
</Window.Resources>
<Grid x:Name="LayoutRoot" Loaded="LayoutRoot_Loaded">
<ListBox x:Name="myListBox" ItemTemplate="{DynamicResource ProductTemplate}" Margin="8,8,8,0" Height="90" VerticalAlignment="Top"/>
<TextBox x:Name="myTextBox" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Bottom" Margin="8,0,8,30.04" d:LayoutOverrides="VerticalAlignment"/>
<Button x:Name="filterBtn" Content="Filter" VerticalAlignment="Bottom" Margin="142,0,141,4.08" Click="filterBtn_Click_1"/>
</Grid>
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Create a defaut view for the MS Project Server 2010 client

    Dear Forum,
    how can I create a defaut view for the MS Project Server 2010 client?
    I saved a template and set a default view under File -> Options ->Project View. I also did the same in the checked-out enterprise global. If I then close the client and re-open it my default view changes back again to the previous one (not the view
    I set as a default view).
    What explains this behaviour and what can I do? Any hints?
    Thank you very much for your help!

    Scheduler007 --
    The view you selected by clicking File > Options > Project View is the default view for every new project you create from a blank project template.  This is a global option, so setting it from the checked out Enterprise Global file serves no purpose. 
    When you select a view as your default view, you will see that view applied to the blank project that is opened when you launch Microsoft Project 2010, and you will see it applied if you create new blank projects.  If you create enterprise templates for
    people to use in your organization, you should simply apply the view to the template that you want as the default so that users will see this view immediately when they create a new project from the template.  In addition, if you apply a view to an open
    project, close and check in the project, and then reopen the project, you will see the last view applied in that project (as Guillaume correctly points out).
    Beyond this, there is no method possible for the Project Server administrator to specify a default view for the Microsoft Project application used by the project managers in your organization.  This is an option each PM must set.  Hope this helps.
    Dale A. Howard [MVP]

  • Power View Cross-Filtering

    In Power View, if you have a bar/column/map visualization with a hierarchy (such as category, sub-category) along with other charts of any kind. 
    If you double click on a column to drill from category to sub-category, no cross-filtering happens. This is confusing because the column chart is drilled into the "bikes" category for example, but all the other charts/tables are not filtered by the
    same category.
    This bug is present in "Microsoft Connect"
    with this title : Power View Cross-Filtering
    I added there also my own comment: In my opinion people "always" expect drilling down also cross-filter other visualizations.
    Anyway it will be a good solution to have a "button" to activate or deactivate the cross-filter drill down on the canvas.
    It  will be solved or not?

    Hi Mario,
    Thanks for your posting.
    On the Power View Cross-Filtering issue, I would suggest you submitting a wish at
    https://connect.microsoft.com/sql or voting others’ feedback. Connect site is a connection point between you and Microsoft, and ultimately the larger community. Your feedback enables Microsoft to make software
    and services the best that they can be, and you can learn about and contribute to exciting projects. When more and more customers have this requirement, product group will consider to add the function in the future.
    Appreciate your understanding.
    Regards,
    Heidi Duan
    If you have any feedback on our support, please click
    here.
    Heidi Duan
    TechNet Community Support

  • View creation - filtering receiving time intervals

    I want to create some new views for my team.
    We handle e-mails in shifts (most of the time there are 6 of them) so in each hour it looks like the below (we use 24 hour clock from 14:00 to 21:59 so 2PM to 10PM):
    6/1 - 14:00 - 14:09 // 15:00 - 15:09 // 16:00 - 16:09 // .................... // 21:00 - 21:09
    6/2 - 14:10 - 14:19 // 15:10 - 15:19 // 16:10 - 16:19 // .................... // 21:10 - 21:19
    6/3 - 14:20 - 14:29 // 15:20 - 15:29 // 16:20 - 16:29 // .................... // 21:20 - 21:29
    6/4 - 14:30 - 14:39 // 15:30 - 15:39 // 16:30 - 16:39 // .................... // 21:30 - 21:39
    6/5 - 14:40 - 14:49 // 15:40 - 15:49 // 16:40 - 16:49 // .................... // 21:40 - 21:49
    6/6 - 14:50 - 14:59 // 15:50 - 15:59 // 16:50 - 16:59 // .................... // 21:50 - 21:59
    I would like to create the view based on that.
    So first mail shift (6/1) can only see what is coming in between 00-09 in every hour, second (6/2) can only see what is com in in between 10-19...and so on...
    I did it with the advanced view settings, but I have 2 issues:
    1. It is using the date of the creation so is it possible to put in a function which takes the actual date, like CURDATE() ?
    2. Somehow a few e-mails are missing, so it works almost fine, takes almost everything but it seems that a few e-mails are missing from the new view and they are there in the original view. I checked and no other filters are turned on, so this must
    be something else. The filter is based on the 'Received' timing and I'm not sure if anything else interacts.
    For example in the 4th shift (6/4) there were like 10 e-mails missing during my test day at minute :30, but there were some at 15:30, 16:30 and 18:30 which  were in the filtered view. I first thought it's the <= and >= settings, but it shows
    that it is not. I have no idea why it skips e-mails...
    The SQL code is the below for the first shift (6/1):
    (("urn:schemas:httpmail:datereceived" >= '2014.04.07
    14:00' AND
    "urn:schemas:httpmail:datereceived" <= '2014.04.07 14:09') OR
    ("urn:schemas:httpmail:datereceived" >= '2014.04.07 15:00' AND
    "urn:schemas:httpmail:datereceived" <= '2014.04.07 15:09') OR
    ("urn:schemas:httpmail:datereceived" >= '2014.04.07 16:00' AND
    "urn:schemas:httpmail:datereceived" <= '2014.04.07 16:09') OR
    ("urn:schemas:httpmail:datereceived" >= '2014.04.07 17:00' AND
    "urn:schemas:httpmail:datereceived" <= '2014.04.07 17:09') OR
    ("urn:schemas:httpmail:datereceived" >= '2014.04.07 18:00' AND
    "urn:schemas:httpmail:datereceived" <= '2014.04.07 18:09') OR
    ("urn:schemas:httpmail:datereceived" >= '2014.04.07 19:00' AND
    "urn:schemas:httpmail:datereceived" <= '2014.04.07 19:09') OR
    ("urn:schemas:httpmail:datereceived" >= '2014.04.07 20:00' AND
    "urn:schemas:httpmail:datereceived" <= '2014.04.07 20:09') OR
    ("urn:schemas:httpmail:datereceived" >= '2014.04.07 21:00' AND
    "urn:schemas:httpmail:datereceived" <= '2014.04.07 21:09'))
    Please if you have any idea what could be wrong, maybe I should add something else to the filter please get back to me. This way it is useless and I really want us to use view because we have about 50 emails per shift in every hours.
    Thank you!

    1.  I can't help you with this.
    2. What about mail that comes in at 14:09:30?  It would be dropped, no?  I think your logic should be:
    ...("urn:schemas:httpmail:datereceived" >= '2014.04.07
    14:00' AND
    "urn:schemas:httpmail:datereceived" < '2014.04.07 14:10') OR...
    You didn't ask, but a problem I would have with your approach is that it's based on views, which isn't exactly best for accountability.  I would think you'd want to be using some kind of code that routes mail to the mailboxes of those responsible rather
    depending on them seeing it in a shared mailbox.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • ADF View Object filtering

    Hi, This question is related to ADF table filters.
    Let us take an example of a View Object that is being dropped in a jspx page as a "ADF Table" with filters.
    Whenever user applies a filter on a column, will the data for view object be queried from database once again?
    Is there a way to avoid the query re-execution on applying filters in table.

    Thanks for the replies. Jdeveloper version we use is 11.1.1.6.
    I have a follow up question.
    We have a programmatic View Object which gets data from 3 different rows and populate them in view rows (We have overridden standard methods like executeQueryForCollection..etc)
    The data is displayed in a ADF table.
    Now when the user filters data, normally filter works fine but the web service calls are made every time the filters are applied/removed.
    We would like to avoid making calls to web services when user filters data by setting Query Mode to "QUERY_MODE_SCAN_VIEW_ROWS".
    But what happens is first time filter is applied, the filtered rows are displayed properly but from there on the query collection refers to filtered data only and not the complete data set.
    So when the user removes filter and hits enter again only filtered rows are displayed and not all the rows fetched initially. I am not sure why the query collection looses all the rows and keeps only filtered rows??

  • Avdanced Table Views Not Filtering

    I have an issue with an advanced table's views. The filters defined for the views are not applied to the data when the view is applied.
    I can save the views fine but when I open the view all the available data is listed instead of just the data that should be shown based upon the view that was saved.
    I'm thinking that either the view did not save the criteria that was entered and run prior to choosing to save the view or that the view isn't applying the criteria to the VO.
    Any ideas would be helpful.
    Also, when choosing to create the view the shuttle for including or excluding table columns does not show up. Any thoughts as to why this is the case?
    Thanks,
    Jason

    This will let you choose:
    Not perfect, but it gets it done :)
        select owner       "Owner",
              table_name  "Table_Name",
              column_name "Column_Name",
              initcap(data_type) ||
                 decode(data_type, 
                        'CHAR',      '('|| char_length ||')',
                        'VARCHAR',   '('|| char_length ||')',
                        'VARCHAR2',  '('|| char_length ||')',
                        'NCHAR',     '('|| char_length ||')',        
                        'NVARCHAR',  '('|| char_length ||')', 
                        'NVARCHAR2', '('|| char_length ||')',
                        'NUMBER',    '('||
                         nvl(data_precision,data_length)||
                             decode(data_scale,null,null,
                                    ','||data_scale)||')',
                           null) "Type",
              nullable "Nullable",
              owner       sdev_link_owner,
              table_name  sdev_link_name,
              'TABLE'     sdev_link_type
         from sys.all_tab_columns
        where nvl( :OWNER, user) = owner
          and (:TABLE_NAME is null or
               DECODE(:FUZZY_SEARCH, 'Y', instr(upper(table_name),upper(:TABLE_NAME)), - 1)  > 0
               OR upper(table_name) = upper(:TABLE_NAME)
          and (:COLUMN_NAME is null or
               DECODE(:FUZZY_SEARCH, 'Y', instr(upper(column_name),upper(:COLUMN_NAME)), -1) > 0
               OR upper(column_name) = upper(:COLUMN_NAME)
          and substr(table_name,1,4) != 'BIN$'
          and substr(table_name,1,3) != 'DR$'
        order by owner, table_name, column_id

  • Filter View Not Filtering

    I have an InfoPath Forms Library in which I need to filter some views. The first one being Client Status, which is a drop down box with the choices of Open, Suspended, Warrant, and In Custody.
    I created a view that I want to only show the Open items.  First I used the Filter to say show only the items that Client Status is equal to Open.  This brought back zero results.  I did a copy & paste so I know Open is correct & no
    hidden spaces, etc.
    Then I tried to do the opposite and filtered if Client Status is NOT equal to Suspended, Warrant, and In Custody using the AND as well as th OR options. This filter brought back everything, filtering nothing.
    Can someone please help?  Thanks, Jeannie

    Hello Jeannie,
    Where you are putting filter (in infopath form or in form library view)? If you are setting filter in form library then what is value of that column. I mean could you tell us the form library columns name and their values.
    I suspect that there is mismatch in column value that's why filter is not working.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Publishing a list with specifics views anf filters for all the users to see it.

    Hi i was working on the item level permissions of a list which are accessed by all users.
    I have applied the item level permissions for specific users having specific records to work with.
    Now, there are situations when we need to show all the users all the data but in read only mode.
    How do i work on the report so that the user can actually only see the data.
    The Admin will pick the list with a specific view and apply filters and then expose it for other end users to view.
    How do i achive that?

    Hello,
    How did you set item level permission? I mean,  list "advanced settings" OR manually edit the items permission by breaking the permission.
    If you have broken the permission and user doesn't have permission on  items then there is no way to show item to users. You must provide at least read access to view the item.
    In you case, you can give contributor right to everyone on all items (by inherit parent permission) then go to list settings page-->advanced settings-->then set item level permission as shown in pic:
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Unable to view Report Filters on Excel Services web part

    I have an Excel 2010 file with Pivot Charts. I want users to be able to select filters for the pivot charts to modify their chart/report as needed.
    This excel file with Pivot Charts is visualized using Excel Services Web Part on SharePoint 2010.
    My problem: The Pivot Chart Filters do not appear on SharePoint. They are available when the file is opened in Excel 2010.
    Is there a way to have chart/report filters show up on SharePoint (excel services web part)?

    As per the article below it seems that Pivot Chart Filtering is not available with Excel services. The article reads
    "PivotChart reports are not interactive when displayed in a browser. You cannot filter a PivotChart report directly, but if you interact
    with the PivotTable report that supplies data for the PivotChart report, the PivotChart report updates accordingly. This means if you filter the PivotTable report, the PivotChart report updates to show the filtered data set."
    Unsupported Features in Excel Services
    Though this article is for MOSS 2007 but if you read the following article for SP 2010 it reads "All other unsupported features continue
    to behave as they do in Office SharePoint Server 2007 for Excel Services."
    http://msdn.microsoft.com/en-us/library/ff595319(v=office.14).aspx
    Amit

  • Reseting filters in a Query View

    I have a query built that has a good bit of logic.
    For reporting purposes I'd like to create query views from this one query so I only have to change the logic one place when the user decides they want something tweaked.
    I need a view by company, one by responsible person  etc ....
    The problem arises that when you create the views the filters are "stuck" at what they were then (which makes the views much less useful).   My main issue is for time.  I want the Calendar Year/Month to be the value of the current closed month (the default value in the variable).  But I want the user to be able to change it <u>after</u> running.   
    These views will be used in web templates.   I've tried a few things but the closest I've come is to have a button or link that when clicked sets the filter value based on another data provider.   I don't want that -- I want the value reset when the web template opens.  I tried putting the same command in the "Before rendering" of the web template properties but get a stack overflow error
    Is there a way to save the navigation state of a query without saving the filter values?  Or is there a way I can reset the filter value in the web template?
    I very frustrated

    I am using the new NetWeaver2004s.
    We usually just publish the template to the role & have the role in the portal so I'm not sure how to add that parameter in that case.
    I tried adding to the end of the URL -- but apparently don't have the right syntax.  What syntax should I use?
    I tried checking "Reset Variables to Default" in the web template with no effect

  • Shoe View As A Popup When We Click On A Search Help

    Hi Experts,
    I am working on throwing a view as a popup when we press on the search help button for a column in my table.Could someone please tell me if this is possible and if we have an event that is triggered when we click the F4 symbol right next to the field .
    With Regards,
    Chaitanya.

    Hello Chaitanya ,
                                You can use the freely programmed input help or OVS help .
    For freely programmed input help , you have to create a webdynpro component  ( Say ZWD_FREE_HELP )which will have the pop up view as a defaut view in the window WD_VALUE_HELP . In this wendynpro component you have to implement the interface IWD_VALUE_HELP .
    You have also set the value help listner (  attribute VALUE_HELP_LISTENER  in component controller of type IF_WD_VALUE_HELP_LISTENER ) inside the method SET_VALUE_HELP_LISTENER  in this component  ZWD_FREE_HELP .
    Now you have to use this component in your Main component and provide the component name in for the attribute property freely programmed input help .
    After closing the pop up window you have pass the data to main window . For this you have to implement the on_data_select event ( this event is the interface event at component controller )  of ZWD_FREE_HELP.
    I hope this help you ....
    regards
    Vivek

  • Filters used in a query

    Hi,
    Is there anyway we can know what filters are being used in a query. I am using 2 variables to filter my query.But the report gives me this warning "Invalid filter on ZCODE: Filter changed". This is a display hierarchy with no variables on this infoobject. Can anyone  explain why it is giving me this warning and how I can view the filters when I run the query. All your answers will be rewarded.
    Thanks,
    Kal

    > Go to Query Properties - Variable Sequence - U shud
    > see all the variables here.
    > Do u have a Hier Variable set up for ZCODE.
    There is no variable set for ZCODE. It is just a display hierarchy. But the warning shows me a filter on ZCODE. Is it anyone of the dynamic filters which pop up in the warning messages(This is just a guess). I dont understand how the filters get assigned for infoobjects which do not have any variables associated with it.

  • Filters not working correctly

    We have the strange situation, that filters in calendar views are not working correctly (anymore?).
    If i set up a filter to search for my name as attendee, teaming still shows all entries instead of only just mine. This behavior applies to customized and standard calendar views.
    Filters for (customized) file folders still work as expected.
    Any ideas?

    jasi,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Questions on CDS Views with input parameters

    Dear Experts,
    1. Can we call a CDS View (or generated database view) with input parameters inside an AMDP? I am looking for something similar to the feature in HANA where we can consume calculation view with filters inside SQL Script?
    2. I understand we can next CDS Views, but how we can next (call) a CDS View with input parameters inside another CDS View?
    Thanks,
    Giri

    Hi Thomas,
    I get the below error that the CDS View's generated table function cannot take field from AMDP.
    I have a requirement to query the CDS View using 2 timestamps (start & end). So, in AMDP I have used the TIME_STAMP and try to pass it to the CDS View
    View code:
    define view Z_Ngi_Cag_A
    with parameters start_ts:abap.dec( 15, 0 ) , end_ts:abap.dec( 15, 0 )
    as select from table {
    resource_key
    where
    (begtstmp > $parameters.start_ts or endtstmp > $parameters.start_ts )
    and
    (begtstmp < $parameters.end_ts or endtstmp < $parameters.end_ts )
    I am calling using the below AMDP:
    DECLARE iv_start_date TIMESTAMP;
    DECLARE iv_end_date TIMESTAMP;
    SELECT CURRENT_TIMESTAMP INTO iv_start_date from dummy;
    SELECT ADD_DAYS(CURRENT_TIMESTAMP, 30) INTO iv_end_date from dummy;
    et_data =      SELECT * FROM ZMR_H_CA ( start_ts => iv_start_date, end_ts =>  iv_end_date );
    What could be wrong ? Is this not supported?
    Thanks,
    Giri

  • There is a view named &gantt chart in this project which cannot be overwritten

    Hello,
    I'm using Project Server 2007 SP2. While opening a plan, we are getting the following error
    "There is a view named &gantt chart in this project which cannot be overwritten"
    However, we are not getting the same error for other plan. Is there any changes to be done in the enterprise Global? How to rectify the error? Kindly help.
    Thanks!

    Sandhya987 --
    In addition to Guillaume's excellent answer, you should know that this problem was not caused by the project manager.  The problem was caused solely by the actions of the Project Server administrator.  The Enterprise Global file is reserved for
    ONLY enterprise views, tables, filters, and groups.  For example, there is a default enterprise view named Enterprise Gantt Chart and there is a default enterprise table named Enterprise Entry.  The Project Server administrator should NEVER add local
    views to the Enterprise Global, such as the Gantt Chart, Resource Sheet, etc.
    So, how did the Gantt Chart view end up in the Enterprise Global?  I doubt the Project Server administrator did this intentionally.  Instead, my guess is that he/she applied the regular Gantt Chart view while he/she had the Enterprise Global file
    open for editing.  If the Project Server administrator applies any local view (such as the Gantt Chart view) while he/she has the Enterprise Global file open for editing, Microsoft Project COPIES that view and its default table into the Enterprise Global
    file.  So, if he/she applies the Gantt Chart view while he/she has the Enterprise Global file open, Microsoft Project copies BOTH the Gantt Chart view AND the Entry table into the Enterprise Global file, thus polluting the Enterprise Global file with
    a local view and table.
    To clean up the pollution, keep in mind that your Project Server administrator will need to delete all local view AND all local tables as well.  As the article indicates, as cited by Guillaume, the problem you are facing is a common one, so welcome
    to the club!  :)
    Hope this extra helps.
    Dale A. Howard [MVP]

Maybe you are looking for

  • Is it normal to have to continually check to see if I am connected to the internet?

    I use a MacBook Pro with system 10.7.5 and I just purchased my Airport Extreme after my Airport Express died after about 4 years of use.  Yes, I do get more speed when I am on the internet, or at least it feels that I do, but I would happily trade th

  • Cant install quicktime

    Hi there.. i bought myself a new mac book pro and deinstalled quicktime.. why is not so important.. stupid thing to do because i tried to install quicktime with the downloaded quicktime for leopard 7.5 and it says this "software is not meant for this

  • Failed to send batch after max errors - Snapshot

    I have been replicating happily between 2008 R2 SQL Servers for some time using Transactional replication. Replication stopped yesterday with the following messages on the source server: MSSQL_ENG 10054 Communication link failure MSSQL_ENG 10054 TCP

  • Can I send contacts by bluetooth?

    Can I send contact information via bluetooth on iPhone?

  • Project freezes and won't play on CS3, works on preview

    I am using a magic disk in order not to ruin many DVD's, creating image iso files and after mounting them from the virtual DVD they won't play. Simple project 1 long asset, transcoded automatically, 3 menues, psd's made by photoshop cs2. all the sett