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
Kirtish ShrotriyaKirtish Shrotriya 

Global/WebService identifiers cannot be removed from managed application

Hi I am trying to change my code, I've changed in the method from two to three parameters but it is giving an error 
"Compile Error: Global/WebService identifiers cannot be removed from managed application: Method String calculateTotal(String, String) "

I am not finding why, Please help, Thnaks in Advance !
Shahroz BeigShahroz Beig
Salesforce doesn't allow us to make changes to any of the global method(s) in managed package org. However, if you want to make the change in the class then create another method with your updated code and if required, call the existing method otherwise implement your new requirement.