function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
DurgaPrasadChowdaryDurgaPrasadChowdary 

Class from an Managed Package needs to Invoke an Controller method which is out side the Package.

Hi Friends,
I have an requirement where I need to invoke an Controller's Method Dynamically from an Managed Package's Controller, The controller which I'm trying to invoke is not part of package. Below are the points which i noticed from the Salesforce Docs.
  • Salesforce will expect the controller to be exists in the Package Org if we are refering it directly.
  • We cannot invoke an Custom Controller's Method Dynamically.
  • If your refering an class by using the Interfaces concept, package's controller will checks the Class in the Package itself, it will not check the controller which is out side the package.
Please let me know if there is any other approch to achieve the above requirement.
I really appreciate any help you can provide.