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

Communities - Chatter Answers My Questions not showing for old questions
Hi All,
We migrated a Portal site using Chatter Answers to Communities and for the most part everything is fine. However when a user selects "My Questions" it does not show any questions they created before the migration. New Questions posted after the migration show up fine.
Our migration consisted mostly of switching the Chatter Answers Zone from Partner to Community.
Has anybody else had this problem?
Thanks,
Shane
We migrated a Portal site using Chatter Answers to Communities and for the most part everything is fine. However when a user selects "My Questions" it does not show any questions they created before the migration. New Questions posted after the migration show up fine.
Our migration consisted mostly of switching the Chatter Answers Zone from Partner to Community.
Has anybody else had this problem?
Thanks,
Shane
Did this query in Workbench to find the majority of the problems, then just update the object.
SELECT CreatedById,Id FROM Question
WHERE CreatedById NOT IN (SELECT SubscriberID FROM QuestionSubscription)
All Answers
Old Question tab is not available in Communities. Please refer section "Features Not Available in Communities" in below help document:
http://help.salesforce.com/help/pdfs/en/salesforce_portal_to_community_migration_cheatsheet.pdf
<chatteranswers:searchask communityId="ID"/>
<chatteranswers:feedfilter />
<chatteranswers:feeds communityId="ID"/>
ID removed.
Did this query in Workbench to find the majority of the problems, then just update the object.
SELECT CreatedById,Id FROM Question
WHERE CreatedById NOT IN (SELECT SubscriberID FROM QuestionSubscription)