You need to sign in to do that
Don't have an account?

Cannot stream object 'Cases'
I'm getting this error message when I try to create a Stream Topic with a simple query:
SELECT CaseNumber, Owner, CreatedBy,Status, EngineeringReqNumber__c from Cases
Error Creating Push Topic:
sObject type 'Cases' 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.
How do I know which obect supports streaming? Is there a way to set the object to Streamable? I can stream the Account object fine. What's the difference between Account and Cases?
I think it should be Case not Cases
All Answers
I think it should be Case not Cases
Yeah. Best way to verify if your PushTopic.query is valid or not is to run a SOQL query with the same string value. e.g. workbench or debugshell. PushTopic.query must be a well formed SOQL query for supported entities.
--Vinod.