[SalesForce] URL parameter to force user to stay in Classic/Aloha UI

I'm building an app which is currently 100% lightning UX, however I have a link to a standard report which I would like to force the user to stay in the Classic/Aloha UX to view. When navigating to the report URL, it is presented in the lightning style.

Is there a URL parameter which will force the report page to load in the Aloha style?

I am looking for a parameter that is similar in functionality to the nooverride and isdtp parameters.

Best Answer

Unfortunately I don't believe this is possible. What is the reason for wanting to use classic? If it is simply that you need parameter values this is now supported in Winter '17.

You can force both classic and Lightning to use lightning for the report by making a link as follows:

/one/one.app?source=aloha#/sObject/[reportId]/view?fv0={!Object__c.field}

where [reportId] is the Id of the report and fv0 is the first parameter (equivalent to pv in classic) and {!Object__c.field} is the field you wish to reference in your button/link

Related Topic