List view webpart sorting and filtering requires sign-in.

I have a list view webpart on a page - both the page and the list are viewable to anonymous users.  The page loads great, but as soon as an anonymous user tries to sort, filter, or use the stock list search box, a login prompt is encountered.  Is
there a way around this?

Hi,
For your issue, I have done a test in SharePoint 2013, and it works fine, I can’t reproduce your issue.
Navigate to Central Administration ->Application Management->Manage web applications-> Select the web applications and click the “Authentication providers”->Click “Default” link
“->Check the “Enable anonymous access” option->save
Navigate to one of the site collections under the configured web application and go to Configure -> Site Settings-> Under the “Users and permissions” section, click the Site 
permissions->click Anonymous Access in the Ribbon->In this dialog you have three configuration options, I checked Entire Web site.
Whether the issue occurs in every site collection. Do a test in another site collection, compare the results.
Whether the issue occurs in every web application. Do a test in another web application, compare the results.
Here are some useful posts about how to enable anonymous access to a SharePoint 2013 site, you can use as a reference:
http://blog.cloudshare.com/2012/10/15/how-to-enable-anonymous-access-to-a-sharepoint-2013-site/
Best regards,
Lisa Chen

Similar Messages

  • Controls in ITEM and LIST tabs of Ribbon disabled always in Punishing SharePoint 2013 site if i add list to home page as List View Webpart

    Hi,
    Below is the scenario,
    If i created any custom list and navigating to the list (AllItems.aspx) and on selecting the item, i can see controls in ITEM and LIST tabs of Ribbon are enabled in SharePoint 2013 publishing site.
    If i add the same list in the home page (add web part --> select list view webpart) in the publishing site, on selecting of item, all controls in ITEM and LIST tabs of Ribbon are disabled always.
    Please help me to fix this issue ASAP.
    Regards,
    Krishna

    Hi,
    Thanks for your reply.
    Ribbon controls (only ITEM and LIST tab) still in disabled mode even if i selected the item in the list view webpart.
    Also, i have noticed the below things,
    when i create a published site (default page : default.aspx) and add the list view webpart in the default page, the controls are in disabled mode on selecting item in list view webpart.
    when i create a team site (default page : home.aspx) and add the list view webpart in the default page, the controls are in enable mode on selecting item in list view webpart.
    Please help me on this.
    Regards,
    Krishna

  • Display data from multiple document Libraries in List View Webpart

    Hi All,
    I want to display data from multiple document libraries into one list view webpart(custom i have created)
    I went through the following link http://blogs.msdn.com/b/ramg/archive/2009/04/22/implementing-a-simple-cross-site-collection-list-view-webpart.aspx
    but it tells to display only from one document library.
    My motive behind displaying data in the list view webpart is to achieve the functionality of Check In ,Check Out and other OOB features.
    With Regards,
    Jaskaran Singh

    Hi,
    As there is no such OOTB feature, a workaround is to create a visual web part to gather items from libraries and implement functionalities like Check in, Check out files
    in different libraries.
    The links below will provide more details:
    Create Visual Web Parts in SharePoint
    2010
    A demo about displaying list items in visual web part:
    http://www.dotnetcodesg.com/Article/UploadFile/2/217/Web%20Part%20in%20SharePoint%20To%20Show%20All%20List%20and%20List%20Items.aspx
    About the Check In and Check Out:
    How to Check In a document programmatically
    SPFile.CheckIn method
    and SPFile.CheckOut method
    Best regards
    Patrick Liang
    TechNet Community Support

  • List View webpart from subsite to Top site shows random error "List Does not exist"

    Hi All,
    We have a list in subsite and we are creating a view for that list which we are showing in one of the top site home page. We have taken care of changing the web and list guid of list view webpart when we added on top site. Its working fine but some time
    shows error "list does not exist" but when we refresh the error goes. Is it known issue or if there is any workaround for this? because we cannot go live with this random error.
    Rohit Pasrija

    try these links:
    http://mroffice365.com/2012/01/sharepoint-display-a-list-or-library-from-subsite-to-the-top-level-site/
    http://sharepoint.stackexchange.com/questions/37140/display-list-or-library-on-another-site-as-webpart

  • Show the Read more link in the list view webpart using Client side Rendering

    Hi,
    I have a share point list name as Team.It contains two columns like Role(single line of text) and Name( people and picker).
    I want the display the list view webpart like below format using JS Link/Client side rendering concept.
    If list contains more than 3 items (display like this)
    >TeamMemberName1
    >TeamMemberName2
    >TeamMemberName3
    Readmore... (Read more link should expand all the team members)
    If list contains more than 3 items (display like this)
    >TeamMemberName1
    >TeamMemberName2
    >TeamMemberName3
    Could you please provide the code.It is very urgent for me.
    Thanks for the help!!!

    (function () {
        debugger;
        //Create our Namespace object to avoid polluting the global namespace
        var pfh = pfh || {};
        //Define our Header Render pattern
        pfh.renderHeader = function (ctx) {
            var headerHTML = "<ul>";
            return headerHTML;
        pfh.renderFooter = function (ctx) {
            //Define any footer content here.
            var footerHTML = "</ul>";
            return footerHTML;
        pfh.CustomItem = function (ctx) {
            var itemHTML = "<li>" + ctx.CurrentItem.TeamMemberName[0].title; + "</li>";
            return itemHTML;
        //Define any code/function that needs to be run AFTER the page has been completed and the DOM is complete.
        pfh.PostRenderCallback = function (ctx) {
        //Define the function that will register our Override with SharePoint.
        pfh.RegisterTemplateOverride = function () {
            var overrideCtx = {};
            overrideCtx.Templates = {};
            overrideCtx.Templates.Header = pfh.renderHeader;
            overrideCtx.Templates.Footer = pfh.renderFooter;
            overrideCtx.Templates.Item = pfh.CustomItem;
            overrideCtx.onPostRender = [pfh.PostRenderCallback(ctx)];
            overrideCtx.BaseViewID = 98; //Note: We're using BaseView ID 99 to match our override below
            overrideCtx.ListTemplateType = 100;
            SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
        //Now we load in our override to ensure that this Override is only applied to the intended ListView
        ExecuteOrDelayUntilScriptLoaded(function () {
            var OldRenderListView = RenderListView;
            RenderListView = function (ctx, webPartID) {
                if (ctx.ListTitle == "Test") {
                    ctx.BaseViewID = 98;
                OldRenderListView(ctx, webPartID)
        }, 'ClientTemplates.js');
        //Register for MDS enabled site otherwise the display template doesn't work on refresh
        //Note: The ~sitecollection tokens cannot be used here!
        RegisterModuleInit("/_catalogs/masterpage/Display Templates/csr_ovr_RenderListTemplate_Fixed.js", pfh.RegisterTemplateOverride); // CSR-override for MDS enabled site
        pfh.RegisterTemplateOverride(); //CSR-override for MDS disabled site (because we need to call the entry point function in this case whereas it is not needed for anonymous functions)
    I am using the above script to render the items.
    I am new to the CSR.
    Where do i need to include your script in my script.
    Please help on this.
    Thank you for reply sagar.
    Please note that i am not using content search webpart.

  • SharePoint 2013 Online : Custom List view xslt webpart UI vs List View WebPart UI with search ? How to create a xslt list view webpart same UI as list View webpart ???

    I have created a xslt list view webpart but I does not have UI as SharePoint 2013 list view UI.
    how I can have it.
    Ahsan Ranjha

    Hi Ahsan,
    According to your description, my understanding is that the UI is different between XSLT web part and List View web part.
    Per my knowledge, the List View web part is a kind of the XSLT list view web part which uses XSLT to display data on the page.
    http://sharepoint-videos.com/list-view-and-data-view-web-parts/
    How did you add the XSLT web part and the List View web part?
    Could you please provide a screenshot of the two web parts?
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Problem with sorting and filtering of table

    Hello,
    using VC 7.1 SP5 I have created [this|http://img232.imageshack.us/img232/2460/screenshotsr0.png] model. The webservice returns a collection of structured elements. The table is meant to display values of top-level attributes. This works as expected.
    However, the table cannot be sorted or filtered. What is the reason for this? How can I fix that?
    I tried to store the result of the web service in a data bridge. That did not succeed.
    Best regards
    Alexander

    Hi Natty,
    How are you trying to sort it?
    I want to be able to sort the table by clicking on the table column headers. Furthermore, I want be able to filter the table by using the built-in table feature. However, table sorting and filtering seem to be disabled for this particular table, whereas other tables in my model provide the desired features.
    Best regards
    Alexander

  • Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?

    Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?
    If not, then to me that is a huge retrograde step

    No, the old album list view is not an option in iTunes 11...
    You can restore much of the look & feel of the previous version with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store and untick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album view use Edit > Preferences > General and untick Use custom colours for open albums, movies, etc.
    If you still feel the need to roll back to iTunes 10.7 first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • Split Grid, loose sorting and filtering

    Is this the intended behavior? I would rather have my sorting, and filtering retained when using the split knobs.

    While it is not intended, it is a side effect of splitting. When you split the data grid you have 2 full grids which don't know anything of each other. So in the top you can use 1 filter while in the bottom use another and then compare data between the two.
    -kris

  • Sorting and filtering by select-multi person or group field in the list in SharePoint 2013

    Hi everybody,
    In SharePoint 2013, I have defined a column as "Person or Group" field, which you allow for multiple selections. when I try to sort/filter it by this field in the list. The field doesn't show up in the dropdown. If I changed "Allow multiple
    selections" option to "No" by clicking the column name to edit it in "List Settings", the field can show up sort in the dropdown.
    How about support sorting and filter by select-multiple "Person or Group" field in sharepoint 2013?
    BTW, in SharePoint 2010, it can support this issue no matter what the "Allow multiple selections" option the request is.
    Any help would be great!
    Thanks,
    Jodie

    Hi Jodie,
    Can you please give this as a try.
    To fix the Filter Issue on Assigned To Column. We need to run the following scripts.
    The field which allows more than one values or which allows multiple selections. The multi-valued fileds are non-sortable,
    non-filterable. Multi-valued fields cannot be indexed
    $web=Get-SPWeb
    $list=$web.Lists[] $field=$list.Fields[ColumnName] $strSchema=$field.SchemaXml $str=Schema$strSchema.Replace("Sortable=`"FALSE`"","Sortable=`"true`"")
    $field.SchemaXml = $strSchema
    Krishana Kumar http://www.mosstechnet-kk.com
    Thanks for your reply, I have tried to run the scripts, but it still cannot work. The following is my scripts:
    $web=Get-SPWeb 'http://cst-server-01'
    $list=$.web.Lists["Product Request"]
    $field=$list.Fields["Applicant"]
    $strSchema=$field.SchemaXml
    $str=Schema$strSchema.Replace("Sortable='"FALSE'"", "Sortable='"True'"")
    $field.SchemaXml = $strSchema

  • Excel like 'Freeze column header' functionality in sharepoint OOB list view webpart

    Hi,
    I have OOB external list dropped on a page as listview webpart. It contains many records and hence while scrolling down headers are no available, hence it should freeze all column headers while scrolling down the page. Its directly dragged and dropped
    on site page hence no server side formatting can be done.
    Is there any way we can apply some client side script to freeze column headers to listview webpart while scrolling down? or any settings that can be done to acheive this?
    Thanks in advance.
    Regards,
    Rahul

    Hi Rahul,
    Normal techniques for freezing the header row of an HTML table tend to fall short when it comes to SharePoint 2010 lists due to the lack of THEAD elements.
    You can try something like this, although you may want to test it in various browsers in case the column heading alignment is off.
    <style>
    .ms-viewheadertr{background-color:white;}
    </style>
    <script>
    /* wrap the table in a div, set its height, give it scrollbars, and move it down */
    var myTable = document.querySelector(".ms-listviewtable");
    var wrapperDiv = document.createElement('div');
    wrapperDiv.setAttribute("ID","FreezePaneWrapper");
    wrapperDiv.setAttribute("style","OVERFLOW: auto; HEIGHT: 400px; padding-top:38px;");
    wrapperDiv.appendChild(myTable.cloneNode(true));
    myTable.parentNode.replaceChild(wrapperDiv,myTable);
    /* Freeze the header row and move it up*/
    var headerRow = document.querySelector(".ms-viewheadertr");
    document.getElementById("FreezePaneWrapper").style.width = "" + headerRow.scrollWidth + "px";
    headerRow.style.width = "" + headerRow.scrollWidth + "px";
    headerRow.style.position = "absolute";
    headerRow.style.top = ""+(headerRow.offsetTop-39)+"px";
    /* Tell the header's columns to be the same width as the cells in the first "alternating" row */
    var columns = document.querySelector("table.ms-listviewtable tr.ms-alternating").querySelectorAll("tr>td");
    headers = document.querySelectorAll("tr.ms-viewheadertr th");
    for(var i = 0; i < headers.length; i++){
    if(columns[i].scrollWidth > headers[i].scrollWidth){
    headers[i].style.width = ""+columns[i].scrollWidth + "px";
    }else{
    columns[i].style.width = ""+headers[i].scrollWidth + "px";
    </script>
    Edit: Also, you may want to inspect the HTML attributes on the external list view to be sure the class names match up with the querySelector parameters above. Specifically, the table should have a class of "ms-listviewtable", the header row should
    have a class of "ms-viewheadertr", and rows of alternating background color should have a class of "ms-alternating".
    If any of those are different in your case, you may be able to adjust the above code accordingly.

  • List View webpart throws "list does not exist" although everything is correct

    Hi,
    I'm experiencing a very strange issue. I've already made some research but no one seems to give a clear answer.
    Scenario :
    Site A (Root site collection)
    -- Site B (Sub site of Site A)
    Site B has a publishing page containing a single List View Web part displaying data from a list of Site A.
    The LVWP (XsltListViewWebPart) correctly works and displays the content of the list. But at the moment that the application pool is recycled, the very first hit on the page will result in an error page :
    "List does not exist.
    The page you selected contains a list that does not exist. It may have been deleted by another user."
    Doing a simple refresh (F5) of the page displays the page correctly and the error will never come again.
    The issue is totally reproducible by performing a recycle of the application pool.
    Properties of the webpart are correctly filled as well, ListName, WebID and ListID.
    Do you have any ideas why is this bahaving like that ?
    Thank you,
    Wes

    Hi Kevin,
    Thanks for the reply. The site is running under HTTP. I did check the HTTP Handler and the permissions are alright.
    Also, the web application is setup with NTLM. The Object Cache SuperUser & Reader are setup in the User Policy. 
    Here's the ULS of the error :
    12/03/2012 15:17:20.50 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.50 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'Attachments' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'LinkTitle' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.57 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'Description' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'IT_x002d_Teams' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'Subteams_x002d_Portfolio_Groupin' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.58 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'Product_BusinessCategory' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'Product_BusinessProcess' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.60 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'User_Family' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'Business_Owner' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.61 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tzku Verbose ConnectionString: 'Data Source=sp-ncsa-sp2b;Initial Catalog=Content-NCSA-sp2b-01;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15' ConnectionState: Closed ConnectionTimeout: 15 f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.63 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.63 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation General 8kh7 High Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A2551) at 0x000007FEF0732551 onetutil.dll: (unresolved symbol, module offset=00000000000A3711) at 0x000007FEF0733711 owssvr.dll: (unresolved symbol, module offset=0000000000009212) at 0x000007FEE9639212 owssvr.dll: (unresolved symbol, module offset=000000000009E0F5) at 0x000007FEE96CE0F5 mscorwks.dll: (unresolved symbol, module offset=00000000002BE497) at 0x000007FEF3C7E497 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=00000000000DA6DE) at 0x000007FEEB40A6DE Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001AB1693) at 0x000007FEED021693 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E68D) at 0x000007FEED1AE68D Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C3E196) at 0x000007FEED1AE196 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001C4104C) at 0x000007FEED1B104C Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F48E2B) at 0x000007FEED4B8E2B Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F481DB) at 0x000007FEED4B81DB Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF8835) at 0x000007FEED568835 Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001F30D2F) at 0x000007FEED4A0D2F Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=0000000001FF87DD) at 0x000007FEED5687DD Microsoft.SharePoint.ni.dll: (unresolved symbol, module offset=00000000028067A8) at 0x000007FEEDD767A8 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A1914) at 0x000007FEEA731914 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A06DD) at 0x000007FEEA7306DD System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 System.Web.ni.dll: (unresolved symbol, module offset=00000000002A0780) at 0x000007FEEA730780 Syste f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.63 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Fields e8gd High Exception thrown while fetching field by internal name 'Product_Manager' Microsoft.SharePoint.SPException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. ---> System.Runtime.InteropServices.COMException (0x81020026): List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) --- End of inner exception stack trace --- at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.GetFieldsSchemaXml(String bstrUrl, String bstrListName, ISP2DSafeArrayWriter p2DWKProps, ISP1DSafeArrayWriter p1DFullXML) at Microsoft.SharePoint.SPFieldCollection.EnsureFieldsSafeArray(Boolean bGetFullXML) at Microsoft.SharePoint.SPFieldCollection.get_InternalNameDict() at Microsoft.SharePoint.SPFieldCollection.GetFieldByInternalName(String strName, Boolean bThrowException) f43e1c9c-0c88-4707-a143-4c47a1ac8aac
    12/03/2012 15:17:20.63 w3wp.exe (0x1DC4) 0x136C SharePoint Foundation Database tkeb Verbose Setting database session for {705cbd18-2316-417b-aea8-525c0191368e}. f43e1c9c-0c88-4707-a143-4c47a1ac8aac

  • Export to Excel is not working for List View Web Part after filtering using Query String parameters in SharePoint 2010

    Hi, 
    I am filtering SharePoint list view web part based on Query string parameter and I am doing Export to Excel by using following code.
    <a href="#" onclick="javascript:window.location='../_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List=0DC67399-BE11-48F3-ADFC-E911FB8B5845&View=54671412-3EFE-4281-835A-9EF747AE774E&CacheControl=1'"><img
    alt="Excel" src="/_layouts/images/icxlsx.gif" border="0"/>&nbsp;Export to Excel</a>
    Issue: Able to do Export to Excel when there are no filters applied on list view web part but if applied filters on web part and do export to excel , only header fields are displaying in the excel sheet.
    I don't know why owssvr.dll is behaving like that .
    Please share your ideas.
    Thanks in Advance.

    Hi,
    According to your post, my understanding is that you wanted to create hyperlink to export to excel.
    The URL to execute the export is as follows:
    {Site URL}/_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List={List GUID}&View={View GUID}&CacheControl=1
    After getting the GUID, you  need to “decode” the list GUID.
    Replace %7B with {
    Replace %2D with –
    Replace %7D with }
    More information:
    Create Link to Export Library Contents to Excel
    SharePoint - Create a link to export to Excel
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Report Viewer WebPart in SPD - Missing required page header

    Hi,
    I seem to be getting the following error when adding the Report Viewer webpart to a minimal masterpage in SPD:
    Error Rendering Control  - Unnamed 1 Missing Required Page Header
    If I create a page through the IE browser on the SharePoint then I can add the Report Viewer webpart. However when I then go to view that page in SPD - again I get the above message.
    This is truely irritating ....
    Thanks - Steve

    Looks like a bug in sharepoint or some other design-time quirk in SPD. The code in the report viewer webpart (v11.0) that throws the exception is:
    public static void RegisterCss(Page page)
    if (page.Header == null)
    throw new Exception("Missing required page header");
    HtmlLink child = new HtmlLink {
    Href = StyleSheetLink
    child.Attributes.Add("rel", "stylesheet");
    child.Attributes.Add("type", "text/css");
    page.Header.Controls.Add(child);
    ...so it appears that SPD is not fully instantiating the master page, or otherwise partially executing it. The Header property on Page should be populated with a HtmlHead instance, which is a reference to the head tag in the master page (which must have
    runat=server on it.) For me, the master page is fine -- this is why it still works when adding it via the web ui directly in the browser. When it's put through the design-time grinder in SPD, this property is null. I would presume that this is either a bug
    in the webpart, or a failing in SPD.
    I'm running sharepoint server 2010/sp2 and SPD 2010/sp2/x86, for what it's worth.

  • List View in Xcelsius and truncated lines

    Hi @ all,
    I use a List View in Xcelsius 2008 and sometimes, when the text is longer
    than the column width, unfortunately the text is truncated then.
    Is it possible to have then automatically two lines if the text is longer than the column width?
    That was the reason why I wanted to use the “Input Text Area”. But I cannot use
    the Input Text Area if I have more than 1 destination cell.
    Can you help me here?
    Thanks in advance for your help!
    Regards,
    Maggy

    Hi,
    You try to change or adjust the field lengths as shown below.
    In properities of the list view you can see the Push button " Configure Columns" Then change the length of the fields as you like.
    Regards,
    G.S.Ram.

Maybe you are looking for

  • Can't open PDF-Files with the 64Bit Photoshop-Version but with 32Bit Version

    Hello, our company use Photoshop in combination with PDF-Files. Normally we can open every of our PDFs with Photoshop. But now we have some PDFs that we can't open with the 64Bit version. If we try it the application crashes. But we are able to open

  • Itunes stops working in the middle of syncing

    my itunes stops working and tells me to close during step 7. i'm up to date on my pc and have deleted and reinstalled a couple of time and i still get the same results HELP me Please!!!! & Thank You

  • JBoss and local interfaces (JNDI)

    I'm trying to do simple example involving local interfaces on JBoss. There is Bar remote interface, which uses Foo, local interface. And the problem is - i cant locate Foo within Bar: ejb-jar.xml: <session> <ejb-name>BarEjb</ejb-name> </session> <ent

  • Trouble Syncing iPhone

    I have been having trouble lately syncing my iPhone with my iTunes. I have synced several times before to the iTunes on this computer (mac G4). But lately it either just does not see my iPhone, or if it does, it gives me a "device Time out" error. I

  • Need product key number for installed Robohelp HTML

    Hello, Can anyone tell me how to determine which product key number for Robohelp HTML X5 is used on a particular machine? We have two X5 licenses here, but I only want to upgrade one license on one machine. I do not know which product key number was