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
Wim van BeekWim van Beek 

Calling local apex-class from managed package

Situation: Managed package activates apex-classes from other managed package. Works fine. !
eg. Managed package PacA, calls PacB.Apexclass
As said: works ok.
"ApexMaster thisApexClass = (ApexMaster)(Type.forName(ThePrefix, theScript).newInstance());"
thisApexClass.xyz ....

I can not got this to work for a ApexClass NOT part of a managed package. What value need to be in 'ThePrefix' and/or 'theScript' to get it working

Any help is welcome