Table of Contents

Search

  1. Preface
  2. Introduction to Informatica Cloud MDM - Customer 360 for Salesforce
  3. Configuring the Data Cleansing Settings
  4. Managing Batch Jobs
  5. Verifying Addresses, Email Addresses, and Phone Numbers
  6. Synchronizing Salesforce Records with CC360
  7. Managing Duplicate Records
  8. Consolidating Records
  9. Converting External Records to Salesforce Records
  10. Managing Hierarchies
  11. Integrating Cloud MDM - Customer 360 for Salesforce with Multidomain MDM
  12. Managing Multi-Org
  13. Troubleshooting
  14. Custom Settings
  15. Glossary

Internal Settings for Page Layout

Internal Settings for Page Layout

You can configure internal settings and change the page layout of the Visualforce pages.
You can configure the following internal settings:
Roles to Hide Search on Scout Pages
You can hide the custom buttons in the
CC360
account, contact, and lead Visualforce pages. The custom buttons are
Search
,
Search Option
,
Hide Required Fields
, and
Show Required Fields
.
To hide the custom buttons for a specific user profile, set the value of the
Roles to Hide Search on Scout Pages
internal setting to the user profile. By default, the custom buttons are displayed in the account, contact, and lead Visualforce pages.
The following sample code indicates to hide the custom buttons for the Marketing profile:
API_SettingsManager.updateInternalSetting('Roles to Hide Search on Scout Pages','MarketingProfile');
Account Scout Redirect URL
You can override the account Visualforce page and redirect it to a custom account Visualforce page.
To override the account Visualforce page, set the value of the
Account Scout Redirect URL
internal setting to the URL of a custom account Visualforce page.
Use the following code format to override the account Visualforce page and redirect it to a custom Visualforce page.
API_SettingsManager.updateInternalSetting('Account Scout Redirect URL','/apex/<URL of the custom account Visualforce page>id=@RECORDID@');
For example, the following sample code sets the value of the internal setting to the URL of a custom account Visualforce page:
API_SettingsManager.updateInternalSetting('Account Scout Redirect URL','/apex/MyAccountRedirectpagename?id=@RECORDID@');
Contact Scout Redirect URL
You can override the contact Visualforce page and redirect it to a custom contact Visualforce page.
To override the contact Visualforce page, set the value of the
Contact Scout Redirect URL
internal setting to the URL of a custom contact Visualforce page.
Use the following code format to override the contact Visualforce page and redirect it to a custom contact Visualforce page:
API_SettingsManager.updateInternalSetting('Contact Scout Redirect URL','/apex/<URL of the custom contact Visualforce page>id=@RECORDID@');
For example, the following sample code sets the value of the internal setting to the URL of a custom contact Visualforce page:
API_SettingsManager.updateInternalSetting('Contact Scout Redirect URL','/apex/MyContactRedirectpagename?id=@RECORDID@');
Lead Scout Redirect URL
You can override the lead Visualforce page and redirect it to a custom lead Visualforce page.
To override the lead Visualforce page, set the value of the
Lead Scout Redirect URL
internal setting to the URL of a custom lead Visualforce page.
Use the following code format to override the lead Visualforce page and redirect it to a custom lead Visualforce page:
API_SettingsManager.updateInternalSetting('Lead Scout Redirect URL','/apex/<URL of the custom lead Visualforce page>id=@RECORDID@');
For example, the following sample code sets the value of the internal setting to the URL of a custom lead Visualforce page:
API_SettingsManager.updateInternalSetting('Lead Scout Redirect URL','/apex/MyLeadRedirectpagename?id=@RECORDID@');
Display API Name
The object list in the
Synchronization Settings
page displays the labels of the object.
To display the API names of the objects, set the value of the
Display API Name
internal setting to true. Default is false.
The following sample code configures the
Synchronization Settings
page to display the API names of the objects:
API_SettingsManager.updateInternalSetting('Display API Name','true');

0 COMMENTS

We’d like to hear from you!