Content storage organized as files and libraries in the Sales Cloud.
1
vote
1answer
19 views
How can you interrogate the contents of a Content Pack using Apex and SOQL?
It is possible to query for all the Content Packs in your Org using a query similar to:
SELECT Id FROM ContentVersion WHERE FileType = 'PACK'
However I can't find a way to subsequently query for ...
0
votes
0answers
23 views
How to display a CRM Content Documents video?
I would like to use Salesforce CRM Content Documents to store both video files and also links to external video links (lets say YouTube videos). In fact I already contributed two contents, one is an ...
2
votes
1answer
17 views
How to delete latest version from ContentDocument?
Is there any way we can delete Latest Version from ContentDocument?
I have tried deleting ContentVersion, but DML Operation Delete is not allowed on it.
I have tried deleting ContentDocument, but it ...
1
vote
0answers
28 views
Any way to query CRM Content Subscriptions?
I was wondering if CRM Content subscription information is stored anywhere. I am trying to find which users are subscribed to a particular tag.
This object is the only thing I have come up with as a ...
0
votes
1answer
35 views
How do we query and fetch all Comments of Salesforce CRM Content?
When we post a Comment on Salesforce CRM Content, where does the comments go? I want to fetch them via SOQL query, which object do they get saved in?
3
votes
1answer
30 views
Understanding Results of Querying ContentWorkspace
How is access or readabiity of a ContentWorkspace (library) determined? The following query is returning different results for me:
select id, name from ContentWorkspace
When logged in as a System ...
2
votes
1answer
38 views
ContentVersion Reasonchange not updateable?
I have a before update trigger that I want to use to capture updates to previous version records in the contentversion. I want to add additional text to the reasonchange that was added by the user ...
1
vote
1answer
53 views
Print multiple CRM content PDF files at once
My client is using CRM Content to store PDF documents. I have created a VF page to present content in a tabular form with a 'print' link to circumvent some of the awkwardness of the standard SFDC ...
2
votes
1answer
73 views
Transfering content from one library to a new library
I attempting to move content from one library to another in mass. I have come into a snag where I am given an error message. "You do not have the level of access necessary to perform the operation ...
3
votes
2answers
90 views
Send email notification when a file is uploaded
So I have a content library workspace setup in my org, and I was wondering if it would be possible to have a trigger set up such that when a file is uploaded, it blasts an email to a specified list of ...
2
votes
1answer
71 views
“Content” API Object access for any user?
Can anyone guide me to find out what Content Objects we can access via API.
Recently I found out that "ContentWorkspaceDoc" object threw object inaccessible error when we try to execute an SOQL query ...
5
votes
3answers
180 views
Inside Salesforce : Video Interviewing
I'm currently working developing a HR application. I’d like to be able to include video interviewing right inside of Salesforce. Any thoughts on how to do so?
My thought would be while on a contact ...
1
vote
2answers
132 views
Copy or Link the Chatter Post Files into Library
Wandering if there is any possibility to link the Chatter Post File into a specific Library and make it published.
0
votes
2answers
89 views
ContentPublication limit exceeded
Is there a limit on the content publication ?
Is this the same as content version? The docs say "The maximum number of versions that can be published in a 24-hour period is 5,000. "
Does this ...
1
vote
1answer
180 views
Overcoming ContentDocumentLink single Contact restriction
I have a list of FeedItems I am iterating over. These are FeedItems for a List of Contacts that represent posts to their walls.
Some of these posts are of type ContentPost, which basically means ...
4
votes
2answers
244 views
Can't we query ContentVersion to get the file posted on the Object?
We have VF page that allows a user to upload an attachment that we later convert to FeedItem. THe VF Page also allows updating the FeedItem by inserting a new ContentVersion.
The whole thing works ...
3
votes
1answer
90 views
Content Type picklist values order when uploading to Public Library
When I try to upload file and publish it into a Public Library with Restricted Content Types, the list with available Content Types is displayed in completly random order. Look at the screen:
I ...
0
votes
1answer
193 views
Which object stores Content Library-Members list?
Which object stores Content Library-Members list?
I need to find if current logged in user has just read(Viewer) access to a Library or write(Admin/Author) access?
4
votes
4answers
335 views
Isn't ContentVersion 'VersionData' Updateable (Amendable)?
I'm developing an file (attachments/contents) upload app and the process of my upload is that I upload file in chunks to ensure I'm not hitting view state.
For first chunk
insert new attachment
...
2
votes
1answer
191 views
How to query the content workspace id in apex
How to query the content workspace id in apex?
As of now am hardcoding it.. Can someone suggest a way?
4
votes
1answer
181 views
Do archived documents in Salesforce CRM content count against storage limitations?
I am loking for info if archived Content counts against storage limitations in Salesforce.
Could it be possible that only benefit of archiving Content is having them not displayed in search results ...