Skip to main content
Announcements
Join us on Sept. 17 to hear how our new GenAI Assistant empowers data professionals: REGISTER
cancel
Showing results for 
Search instead for 
Did you mean: 
TRF
Champion II
Champion II

Upload content (files) into Salesforce using ContentVersion object

Hi,
Has anyone ever tried to upload content into Salesforce using ContentVersion object?
 
Using DataLoader, you have to activiate the "Upload Bulk API as Zip File (enable to upload binary attachments)" option and it works fine.
With this option activated, DataLoader automatically construct a zip file in which you can found:
- 1 file per document to load with the name "#attachment_000", "#attachment_001" and so on
- 1 file called "request.txt" corresponding to the input csv file with the content of the field VersionData has been changed to the corresponding entry in the archive file (#attachment_001 for example)
 
In tSalesforceOutptuBulkExec (TOS 6.3.1), this option doesn't exists in the settings and trying to run the job with the same input csv file produce the following error message (catched on Salesforce side):
InvalidBatch : Binary field VersionData is only supported for content types ZIP_XML and ZIP_CSV
Thank's.
 
Labels (5)
11 Replies
Anonymous
Not applicable

Hi TRF
I have checked with our developers, tSalesforceOutptuBulkExec component does not support this option yet, he suggested to create a feature request on our bugtracker.

Regards
Shong
Anonymous
Not applicable

Hi,
how's progress with this option? Did u guys implemented it?
Have similar problem with tSalesforceOutptuBulkExec.
Stamen_Nikolov
Contributor
Contributor

Hi, I`m currently doing this. This is how the flow looks like, if you have any question please do let me know. 

In my case i have attachments from a legacy system that have been linked to customers. It`s a 2 step flow and it`s using context - 1st step is inserting files into SFDC (using ContentVersion object), 2nd step is quering the imported versions and adding them to a library that is being manually created in advance and sharing to all users through a Public group (Using ContentDocumentObject).

 

In the first part I`m reading the files from a folder, then i have two csv files where i`m doing two lookups - one for the filename and one for the customer.

 

0683p000009M0QR.png

 

 

0683p000009M0QW.png

 

 

 

 

Anonymous
Not applicable

Hi, 

I am trying ton insert PDF File in salesForce (ContentVersion), and i know that i must convert the File in 64 base's, is it possible to show the java code in your tjavarow component.

Thank's

Anonymous
Not applicable

Hi, arezki
Here some sapmle may be proper to u:

FileInputStream pdfDocument = new FileInputStream(file);
    byte[] documentData = new byte[(int)file.length()];
    
    //fill array with some bytes
    pdfDocument.read(documentData);
    
    // Convert bytes array to Base64 string to fill Body field
    output_row.Body = new String(Base64.encodeBase64(documentData));

You should import the org.apache.commons.codec.binary.Base64 first which is lay in commons-codec-1.11.jar

Anonymous
Not applicable

thank's F uncleYar. It ok form me
freebirdSFDC
Contributor
Contributor

Has anyone tried uploading zip files to Salesforce? I am having this requirement where I need to populate multiple zip files from a remote location to Salesforce. My doubt is do I have to convert it to Blob and is it possible to do so using Talend Open studio? Thanks in advance.

kholio_ak
Contributor
Contributor

Hello @Stamen Nikolov​,

 

I'm trying to achieve the same use case.

However, the snapshots you've posted are somehow not active.

 

Could you pls share them again ?

Thanks!

 

Beste regards

VRagothaman
Contributor
Contributor

Hi All,

 

I am getting the same error (InvalidBatch : Binary field VersionData is only supported for content types ZIP_XML and ZIP_CSV) while trying to upload the file using tSalesforceOutptuBulkExec? Is the support still not available?