Salesforce Reports and Dashbord on a Custom Visualforce Page We can achieve using apex iframe <apex:iframe src=”/Reportor OR Dashboard ID?isdtp=nv” scrolling=”true” height=”1588px” width=”100%”/> For Example: [java] <apex:page> <apex:iframe src=”https://cs14.salesforce.com/00Oc0000000Nzfe?isdtp=nv” scrolling=”true”…
Monthly Archives
June 2013
-
-
how to get the query parameters in visualforce page We can get the Query Parameters in Visualforce page using {!$CurrentPage.parameters.QUERYPARAMETER NAME} For Instance: https://Salesforce_instance/apex/VFPage?Id=001D000000IRt53&CaseId=003D000000T6bIE Here we can get the ID…
-
How to fetch the Salesforce Profile Name From User Object Using SOQL Using Below SOQL, We can fetch the Profile name from User Object in single query itself: Select Username,…