BuddhiP
BuddhiP

Reputation: 6451

Add custom field to salesforce standard account via application?

I need to add a custom field to the standard salesforce account object when a user installs my SalesForce application (Managed) in his organization.

Is it possible to package such customization into a managed package and distribute? I'm unable to find any reference to such packaging in the documentation.

Upvotes: 2

Views: 1533

Answers (2)

user3713918
user3713918

Reputation: 1

Go to Build-->Customize-->Account-->Fields

Scroll down to the Account Custom Fields and Relationships related list.

Click on the 'New' button and create a new field of the Account object.

Upvotes: 0

Daniel Ballinger
Daniel Ballinger

Reputation: 13537

From your managed package page:

  1. Press the Add button under the Components tab.
  2. Set the Component Type to Custom Field
  3. Check the Checkbox next to your field
  4. Press Add To Package

More details are available in the documentation under Adding Components to Your Package.

Note that once your managed package is released certain details will be locked down and can't be changed.

Upvotes: 2

Related Questions