![](https://www.infallibletechie.com/wp-content/uploads/2024/01/Update-Field-Usage-for-Salesforce-uneditable-Standard-Fields-1024x576.jpg)
To update Field Usage for Salesforce uneditable Standard Fields, we have to set businessStatus through deployment.
1. Extract the Account Object BillingAddress field.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>Account.BillingAddress</members>
<name>CustomField</name>
</types>
<version>59.0</version>
</Package>
2. Add businessStatus value to the extracted field and deploy the field.
<?xml version="1.0" encoding="UTF-8"?>
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>BillingAddress</fullName>
<trackFeedHistory>false</trackFeedHistory>
<businessStatus>Active</businessStatus>
</CustomField>
![](https://www.infallibletechie.com/wp-content/uploads/2024/01/Salesforce-Field-Usage-Standard-Field-Update.png)