Make Account Field Values Default
You can hide the required fields in Account from the Create Competitor page by creating an After Create trigger on the Account object. The below example is for COMPETITOR party usage.
Create a trigger in Account as shown below:
def party = getAttribute('OrganizationParty')
def partyUsage = party.getAttribute('PartyUsageCode')
if (partyUsage == 'COMPETITOR') {
// setAttribute() for the required Account fields
}
To change the displayed fields in the upper part of the Create Competitor page, do the following:
-
Go to the Account object and click the Pages node.
-
Click the Desktop Pages tab.
-
In the Details Page section, click Edit Organization Details Region.
-
Toggle fields between the Available Fields and Selected Fields panels to show or hide them.