Microsoft KB Archive/932827

From BetaArchive Wiki

Article ID: 932827

Article Last Modified on 11/15/2007



APPLIES TO

  • Microsoft Commerce Server 2007 Standard Edition
  • Microsoft Commerce Server 2007 Enterprise Edition
  • Microsoft Commerce Server 2007 Developer Edition



SYMPTOMS

Consider the following scenario. In Microsoft Commerce Server 2007, you use the CatalogSearch object to search a catalog. The sorted column that is set by using the SortProperty property of the CatalogSearchOptions object contains a null value in the data table. In this scenario, the search result is not always sorted correctly.

RESOLUTION

Hotfix information

A supported hotfix is now available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next service pack that contains this hotfix.

To resolve this problem, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:

Note If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:

Prerequisites

This hotfix requires Commerce Server 2007 to be installed on the server because of file dependencies.

Restart requirement

You do not have to restart the computer after you apply this hotfix.

Hotfix replacement information

This hotfix does not replace any other hotfixes.

File information

The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.

File name File version File size Date Time Platform
Catalogcreate.sql Not Applicable 1,121,290 15-Mar-2007 18:12 Not Applicable
Categoryresults.sql Not Applicable 12,251 27-Feb-2007 03:58 Not Applicable


STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

MORE INFORMATION

After you apply this hotfix, all the new catalogs that are created return the sorted result. To resolve this problem in the existing catalogs, you must run the Categoryresults.sql scripts in the existing catalog databases.

Steps to reproduce the problem

To reproduce the problem, use the following code.

CatalogServiceAgent agent = new CatalogServiceAgent(@"http://localhost/catalogwebservice/catalogwebservice.asmx");
            CatalogContext ctxt = CatalogContext.Create(agent);
            CatalogSearch srch = ctxt.GetCatalogSearch();
            CatalogSearchOptions srchOptions = srch.SearchOptions;
            InventoryOptions invOptions = srch.InventoryOptions;
            invOptions.FilterBackorderableSkus = false;
            invOptions.FilterOutOfStockSkus = false;
            invOptions.FilterPreorderableSkus = false;
            invOptions.PropertiesToReturn = "";
            srchOptions.ClassTypes = CatalogClassTypes.AllClassTypesClass;
            srchOptions.PropertiesToReturn = "";
            srchOptions.RecordsToRetrieve = 1000;
            srchOptions.SetPaging(1, 1000);
            srchOptions.SortDescending = false;
            srchOptions.SortProperty = "MyProductId";
            srchOptions.StartingRecord = 1;
            srch.AdvancedFreeTextSearchPhrase = "\"duplicate*\" and \"productname *\"";
            srch.FreeTextSearchPhrase = "";
            srch.SqlWhereClause = "";
            srch.Language = "en-US";
            srch.UseAdvancedFreeTextSearch = true;
            srch.CatalogNames = "SearchTestCatalog1";
            srch.CategoryName = "Category2";
            srch.Recursive = true;
            CatalogItemsDataSet ds = srch.Search();
            GridView1.DataSource = ds.CatalogItems;
            GridView1.DataBind();

For more information about software update terminology, click the following article number to view the article in the Microsoft Knowledge Base:

824684 Description of the standard terminology that is used to describe Microsoft software updates


Keywords: kbhotfixserver kbexpertiseinter kbqfe KB932827