- DocuSign Community
- :
- Dev Zone
- :
- DocuSign API Integration (Ruby, Salesforce and Other)
- :
- How to add the DocuSign Status Related list to a V...
- Start Article
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
How to add the DocuSign Status Related list to a Visualforc e page.
[ Edited ]
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-09-2012 10:18 AM - edited 02-20-2012 09:25 AM
How to add the DocuSign Status Related list to a Visualforce page.
First, go to the Opportunity field in the DocuSign managed package (API name: dsfs__Opportunity__c). Make a note of the Child Relationship Name id. You can also use Workbench (https://workbench.developerforce.com) to find the relationship name by going to the Opportunity - Child Relationships - dsfs__DocuSign_Status__c.dsfs__Opportunity__c. It should look like a 19 character string wrapped in a dsfs prefix and a relationship suffix (dsfs__xxxxxxxxxxxxxxxxxxx__r).
Next, go to your vf page and create your related list:
<!-- Related DocuSign Activity -->
<div id="DocuSignActivity">
<apex:relatedList list="dsfs__xxxxxxxxxxxxxxxxxxx__r"></apex:related
The DocuSign Status related list will now show up in your VisualForce page.
thanks,
