You need to sign in to do that
Don't have an account?
SHAIK MOHAMMAD YASEEN
how to display all the available attachements on vfpage
Hi All,
Please help me on the below
I have a VFpage where in one section i need to display all the avaliable attachments for a record(FYI i have record ID for the partitcular record lets say recId).
Please help me with sample code in order to acheive this also on click of the attachment record i should be able to download the attachment.
BEst Regards,
Mohammad Yaseen
Please help me on the below
I have a VFpage where in one section i need to display all the avaliable attachments for a record(FYI i have record ID for the partitcular record lets say recId).
Please help me with sample code in order to acheive this also on click of the attachment record i should be able to download the attachment.
BEst Regards,
Mohammad Yaseen
Quickly what I can tell you where to go to get all the attachments and what field will help you to join between your parent record & attachment
SELECT id, parentid, name FROM Attachment
Parentid is foreign key to your parent record
Name is the name of the file you uploaded to the salesforce.
Id is the record id of the attachment which you have to bind with the below url to download the content:
https://orgname-dev-ed--c.ap2.content.force.com/servlet/servlet.FileDownload?file=00P2800000cihAC
I hope the mentioned information help you to figure out to develop the section in your VF page
All Answers
Quickly what I can tell you where to go to get all the attachments and what field will help you to join between your parent record & attachment
SELECT id, parentid, name FROM Attachment
Parentid is foreign key to your parent record
Name is the name of the file you uploaded to the salesforce.
Id is the record id of the attachment which you have to bind with the below url to download the content:
https://orgname-dev-ed--c.ap2.content.force.com/servlet/servlet.FileDownload?file=00P2800000cihAC
I hope the mentioned information help you to figure out to develop the section in your VF page
Please use below code if we will select Account in contact vf page it will display related attachments.
VF page : Class :
Hope This helps.
Please check once and let me know if any help needed.
Thanks
Varaprasad