You need to sign in to do that
Don't have an account?

Save as pdf in salesforce standard page
Hi All,
I have create a button in Account standard page as "Save as PDF". When i have to click that button to save the current Account standard page save as pdf. If any know how to save Standard page as PDF.
I have create a button in Account standard page as "Save as PDF". When i have to click that button to save the current Account standard page save as pdf. If any know how to save Standard page as PDF.
For this you need to create VF page same as standard page and you need to use renderedAs= "PDF" , and onclick on the button you can cal that VF page.
please letme know, if this will help.
Thanks,
Keyur Modi
I don't think withough creating the VF page you can achieve this.
Thanks,
Keyur Modi
You can use such like code for save standard detail page render as PDF
<apex:page standardController="Account" renderAs="PDF">
<apex:detail/>
</apex:page>
From the button on detial page redirect to this page will save the detail page as pdf.
If you think this will help you please select this as best answer.
Thanks
Jitendra
1. Create an Apex Page.
2. Create an Apex controller (which will read the Salesforce Force standardPage) which is referenced from Apex Page. Here is some sample code
NOTE: our objective was to download the knowledge article as PDF. Hope this helps.