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
CloudConversionCloudConversion 

Calling Global Static @future (callout=true) Method in Managed Package?

We are trying to call the following managed package method, but it's not even entering the method:

 

@future (callout=true)

global static void syncInventory(Map<String, Integer> params);

 

Is this possible?

Thanks,

Jon

WesNolte__cWesNolte__c

Should be possible, if the class is part of the managed package don't forget to add the package prefix to the class name when calling it.


Wes