Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
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
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.
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
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?