function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SteveAtGFISteveAtGFI 

SOSL on SF specific Article types causes error?

While I know this used to work, and it's documented here:

 

http://www.salesforce.com/us/developer/docs/soql_sosl/Content/sforce_api_calls_sosl_with_data_category.htm

 

Searches on my article types like:

FIND 'error' IN ALL FIELDs RETURNING Patch_Fix_release__kav (Id, Title WHERE PublishStatus='online') WITH DATA CATEGORY All_Products__c AT All_Products__c

 

Are now giving me the error:

 

Error:

sObject type 'patch_fix_release__kav' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.

 

I've tried adding the __c to the type to no avail. I've even tried doing a simple query like this:

 

FIND 'error' IN ALL FIELDs RETURNING KnowledgeArticleVersion (Id, Title WHERE PublishStatus='online') WITH DATA CATEGORY All_Products__c AT All_Products__c

 

And this gives back basically the same error:

 

Error:

sObject type 'knowledgearticleversion' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.

 

Anyone have any idea what's going on?