You need to sign in to do that
Don't have an account?
sp13
Link to Console
I need to open the console from an external link.
For example, this link(outside console) automatically redirects to the console:
https://na1.salesforce.com/apex/VFPageName?id=001000000000000
after I'm redirected to the console, I want the tab of Account record with id 001000000000000 to open automatically. I'm unable to set the primary tab onload of console. Is there a way to do this?
For example, this link(outside console) automatically redirects to the console:
https://na1.salesforce.com/apex/VFPageName?id=001000000000000
<apex:page controller="VFPageNameController" action="{!GotoConsole}"> </apex:page>
public class VFPageNameController { public VFPageNameController() {} public Pagereference GotoConsole() { PageReference pr = new PageReference('/console?id=' + ApexPages.currentPage().getParameters().get('id');); return pr; } }
after I'm redirected to the console, I want the tab of Account record with id 001000000000000 to open automatically. I'm unable to set the primary tab onload of console. Is there a way to do this?