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
Rohan SarafRohan Saraf 

How to export the Data from the ContentNote Object in the Salesforce Professional Edition

Hello All,
I have exported all the data from the Professional edition Salesforce Org. However I have all the data from the available objects, but the data of the Salesforce Internal object 'ContentNote' is missing.

As the API is not enabled in this org, I cannot even query it in the Org.

If anyone know hows to export the ContentNote Data from the Salesforce Professional Edition Org, please guide me about it. It is very very important and it needs to be completed today itself.

Thanks in advance..!!

Regards,
Rohan Ravindra Saraf
Best Answer chosen by Rohan Saraf
Komal WaghKomal Wagh

Hi Rohan,

All you need is to deal with the contentversion object as contentnote is missing in the backup files..Contentversion object has a field like 'textpreview' and 'title which holds the information.You will need to import the contentversion records.Secondly,export the just now imported contentversion  to get new contentdocumentid.Use this new contentdocumentid and mapped it with old contentdocument id using VLOOKUP's  and also use  title to import the contentdocumentlink.Like wise map the other fields which are required.Perform the update on contentdocumentlink.

Thanks..!
Komal Wagh

 

All Answers

NagendraNagendra (Salesforce Developers) 
Hi Rohan,

When you perform your export using the Scheduled Data Export featurehttps://help.salesforce.com/articleView?id=admin_exportdata.htm&type=5, make sure to select the Include Salesforce Files and Salesforce CRM Content document versions check box.

When you do so, your ZIP files will include all of the Content in your Org. ContentNote is essentially a facade over the underlying ContentDocument and ContentVersion records. You'll find your Notes and their contents in the same location as other attached Files, in those objects.

Thanks,
Nagendra
Komal WaghKomal Wagh

Hi Rohan,

All you need is to deal with the contentversion object as contentnote is missing in the backup files..Contentversion object has a field like 'textpreview' and 'title which holds the information.You will need to import the contentversion records.Secondly,export the just now imported contentversion  to get new contentdocumentid.Use this new contentdocumentid and mapped it with old contentdocument id using VLOOKUP's  and also use  title to import the contentdocumentlink.Like wise map the other fields which are required.Perform the update on contentdocumentlink.

Thanks..!
Komal Wagh

 

This was selected as the best answer
Rohan SarafRohan Saraf
Hi @Komal,

Thank you for your Suggestion. It worked for me..!!