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
CodeBeeCodeBee 

Possible to edit Unmanaged package's Apex class file ?

Good day,

 

After installed the unmanaged package to new environment, is it possible we can edit the apex or other components stuff in new environment, let's assume I am in System admin role ?

 

If it doesn't allow to edit, is it the only way that we go resource file perform the modification and upload the unmanaged package to new environment again ?

 

Thanks in advance !

Best Answer chosen by Admin (Salesforce Developers) 
sfdcfoxsfdcfox

Unmanaged code can be edited by users with the Author Apex permission (standard System Administrator, and custom profiles with this permission). In order to edit code in production, however, requires that you use the Ant Toolkit, Eclipse Plug-in, or other Apex Code editing software. In a sandbox or developer account, you may edit the code directly in Setup > Develop > Apex Classes.

All Answers

sfdcfoxsfdcfox

Unmanaged code can be edited by users with the Author Apex permission (standard System Administrator, and custom profiles with this permission). In order to edit code in production, however, requires that you use the Ant Toolkit, Eclipse Plug-in, or other Apex Code editing software. In a sandbox or developer account, you may edit the code directly in Setup > Develop > Apex Classes.

This was selected as the best answer
CodeBeeCodeBee

Thanks sfdcFox, you are the man