The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
37 views

How can you export an object's attachments based on a user-defined date range of record created date?

The customer requirement involves a user being able to provide a date range to identify a set of custom object records. For all object records that fall within that date range (assuming the Created ...
2
votes
1answer
14 views

Outbound Message & Attachment

Is it possible to send an uploaded file (attachment) to an Enterprise Server via an Outbound Message?
1
vote
1answer
19 views

Is it possible to add an attachment to an existing Task or Event?

Using the standard Salesforce interface for Tasks (Page Layout), there is a related list for Attachments. However, there's no button to add a new Attachment to an existing Task, and when I edit the ...
0
votes
1answer
44 views

Trigger to send email notification after attachment deletion

I have this trigger to send an email when an attachment has been deleted. trigger send_email on Attachment (after delete) { Attachment del = trigger.new[0]; Messaging.SingleEmailMessage mail ...
-1
votes
1answer
115 views

Want to create a Event VF page?

I would like to create a VF page similar to Event standard page. I am not able to add Recurrence, Reminder, Attachments to the my custom Event Vf page. Please help me how can i add these additional ...
2
votes
3answers
75 views

Ramifications of replacing Contracts with a custom object

My question is related to one of my earlier questions. Exposing the contract object in the customer portal Basically, we need to expose the Contract object in our customer portal. But SF currently ...
1
vote
1answer
36 views

Where are my attachements?

I clicked the Send Email button on the Activities related list present on the Case object. While sending the mail, I also attached an image to the mail. While I receive the attachment in the email ...
2
votes
1answer
56 views

Field, attachment Encryption

Does Salesforce support encryption of attachments (does it automatically encrypt attachments), if not could it be implemented? If so how? Does Salesforce supports Encryption of Types other than Text ...
3
votes
1answer
103 views

how to host attachments outside of salesforce

Does anyone have experience hosting attachments outside of salesforce? I have a customer portal that allows file uploads via an authenticated sites user and it could potentially be a large number of ...
1
vote
0answers
42 views

Is it possible to download ALL Case Attachments as 1 file?

Our cases have most often 3-5 files attached. On the Case page, I can see the files listed. Is there a way to download ALL attachments together? With out the need to click on each of them?
6
votes
1answer
164 views

API Access to Google Doc Attachments?

Is there any way to query for Google Doc Attachments? For instance, the following SOQL queries return all Notes and Attachments whose parent is a Salesforce.com record, but I can't find any equivalent ...
3
votes
1answer
83 views

Image Cropping/Resizing Solution

I am looking into building an image uploading interface within Visualforce. I really want it to work similar to how the interface works when you upload your Chatter profile picture. The user should be ...
1
vote
2answers
341 views

Different attachment in same VF page

Hi i have a VF page with 5 input File attachment. I want 5 different attachment on the each of them. eg: Their are 2 more fields. 1. Name, 2. Job, 3. Resume . So like this their are 5 fields. If 1st ...
2
votes
2answers
67 views

How to share an icon between emails?

There several tutorials which show how to upload note / attachment for particular object http://salesforceworld.blogspot.ie/2011/06/save-attachment-in-apex.html However, I want to store the same icon ...
1
vote
1answer
160 views

Notes & Attachments Data Not Available

I am using an outputLink and want to give the user the opportunity to add a Note to a Contact like so: <apex:outputLink title="Add a Note" ...
2
votes
5answers
441 views

Hiding “New Note” button

I am showing Notes & Attachment section. I want to hide "New Note" button on the related list. I don't find any way for doing that. How can I do that? Any thoughts?
2
votes
1answer
241 views

Send chatter files with REST

When I upload a file from the directory (and save it as an attachment) and send it with REST webservices, it works great, but when I get a file from Salesforce (from chatter for example) it doesn't ...
2
votes
1answer
267 views

Determine the correct file type extension for an Attachment

When using the Soap API to work with an Attachment how can I determine the correct file extension when saving the Body contents locally? E.g. I created a test attachment on an Account from a PDF. ...
-1
votes
1answer
267 views

How to Get / Update an existing attachment using C#

Is possible to Get / Update an existing Attachment using C#? If it is can any one share some sample code or resources?
1
vote
2answers
379 views

Can I add a field to the Attachment object (specifically a picklist to track the 'type' of attachment)?

The title says it all. I would like to add a field to the attachment object to be able to sort/filter based on the attachment's type (eg, 'Will', 'Account Opening Document', 'Correspondence', etc.). ...
1
vote
2answers
198 views

What's the best way to migrate attachments from one SF Org to another?

Dataloader to csv doesn't work because of the binary Body, Dataloader to db seems to have problems with heap sizes and API limits ... so what works?
3
votes
4answers
546 views

Resize Image in Photo Upload in Visualforce before save in attachment?

Good Morning Friends, I am creating a Visualforce for my users to upload photos and these photos are saved in the attachments object, but I wonder if there is any way before the picture is saved I ...
3
votes
2answers
443 views

Can't use getContent() in a batch, future method, trigger etc

I have a VF page which has a method in the controller that generates PDF and sends it out via email. It's all working fine when I trigger off the method from a custom button on the page, which is the ...
5
votes
5answers
954 views

Has anyone done Drag and drop multi-upload functionality for attachments/files?

I'm trying to create a visualforce page where someone can drag and drop attachments to upload them and they can see a preview of attachments that they have already uploaded. There are a ton of jquery ...
12
votes
5answers
571 views

Most API call efficient way to retrieve all attachment bodies

I need to download the binary body of all the attachments in my organization. I'd like to do so with the least amount of API calls. It is my understanding that the SOAP API returns a single attachment ...