Applying Plauti Verify to your Objects

Last published at: February 13th, 2026
Delete

Do you want to use Plauti Verify for an Object (standard or custom) other than Lead, Contact or Account? Use this guide to configure Plauti Verify for your other Objects.

1. Add your Object to Verify Setup

  1. In Plauti Verify, go to tab Verify Setup
  2. At left, select Object Configuration
  3. At right, click Add Object
  4. Find the Object you wish to configure and click Save.
    Plauti Verify can work with any Object in Salesforce.

2. Map your field sets for Address, Email and Phone

  1. Still in Object Configuration, at the Object you just added, click Configure.
  2. At the Address, Email, and Phone tabs, map the fields you want to use with Plauti Verify.

3. Override your 'New' and 'Edit' buttons

Deploy Verify Entry for the 'New' and 'Edit' buttons on the Object's record pages.

Read how to do this in detail in How to deploy the Plauti Verify Entry page‍.

In short: 

  1. In Salesforce Setup > Object Manager, find your Object.
  2. Go to Buttons, Links and Actions.
  3. Find the 'Edit' button and click Edit.
  4. At 'Lightning Experience Override', select Lightning Component
  5. In the select list, pick recordval:recordForm.
  6. Click Save.
  7. Repeat for the 'New' button.
Delete

If in the 'Lightning Component' select list one of the 'dupcheck' forms is already selected, change to the 'recordval' form and follow the instructions in Integrate Duplicate Check with Record Validation‍ on how to use Plauti Verify in combination with Plauti Deduplicate.

4. Create the custom field 'Verify Record Status'

Create a custom picklist field 'Verify Record Status'. Without this field Plauti Verify will not work for this Object.

  1. In Salesforce Setup > Object Manager, find your Object.
  2. At left, go to Fields & Relationships
  3. Click New  to add a new field.
  4. As Data Type, choose Picklist and click Next.
  5. Enter only the following information:
    Field Label: Verify Record Status.
    Values: Select 'Use global picklist value set'.
    In the drop-down menu, select Verify Record Status.
    Field Name: Change to rv2Status.
    Then click Next.

  6. Depending on your Salesforce edition, you will now get a screen to establish field-level security.  Click Next
  7. Depending on your Salesforce edition, you will now get a screen where you can add the field to the page layout. Since this is a background process, this should not be applied to any page layout. Uncheck any page layout and click Save.
  8. Now, after creating the 'Verify Record Status' field, you need to map it in Verify Setup.
    Go to the Plauti Verify app > tab Verify Setup
  9. At left, select Object Configuration
  10. At the Object, click Configure .
  11. The Object's Configuration page opens on its Settings tab. Click Configure
  12. In the Field Configuration section, at Status Field, select the 'Verify Record Status' field you just created. Then click Save.

5. Create the custom field 'Verify Validation Result'

Create a custom long text area field 'Verify Validation Result'. Without this field Plauti Verify will not work for this Object.

  1. In Salesforce Setup > Object Manager, find your Object again.
  2. At left, go to Fields & Relationships
  3. Click New  to add a new field.
  4. As Data Type, choose Text Area(Long) and click Next.
  5. Enter only the following information:
    Field Label: Verify Validation Result.
    Field Name: Change to rv2Validation.
    Then click Next.
  6. Depending on your Salesforce edition, you will now get a screen to establish field-level security. Click Next
  7. Depending on your Salesforce edition, you will now get a screen where you are able to add the field to the page layout. Since this is a background process, this should not be applied to any page layout.
    Uncheck any page layout and click Save.
  8. Now, after creating the 'Verify Validation Result' field, you need to map it in Verify Setup.
    Go to the Plauti Verify app > tab Verify Setup
  9. At left, select Object Configuration
  10. At the Object, click Configure .
  11. The Object's Configuration page opens on its Settings tab. Click Configure
  12. In the Field Configuration section, at Status Field, select the 'Verify Validation Result' field you just created. Then click Save.

6. Create the Apex Trigger (mandatory)

Delete

As per Salesforce policy, you first need to create the Apex Trigger in your sandbox and then deploy from sandbox to production

  1. Go to the Salesforce Setup > Object Manager.
  2. In the Object Manager, find the custom object you want to use and click on it. 
  3. Under Details, copy the API Name of the Object.
  4. At the left, go to the Triggers tab.
  5. At top right, click New.
  6. Replace all code in the box with the Apex Trigger code below. Make sure you replace *OBJECT_NAME* and *OBJECT_API_NAME* with the name and API name of your Custom Object.

    Click here to watch a short video of this step.

    trigger rv2**ObjectName** on **OBJECT_API** (after delete, after insert, after undelete, after update, before delete, before insert, before update) {
            if (!recordval.rv2Trigger.triggerSource.equalsIgnoreCase('SELF') || recordval.rv2TriggerMapper.isTriggerDisabled()) {         return;     }         recordval.rv2Trigger triggerProcess = recordval.rv2TriggerMapper.get('**OBJECT_API**', 'rv2Status__c', 'rv2Validation__c');     triggerProcess.execute(trigger.new, trigger.oldMap,trigger.isBefore, trigger.isAfter, trigger.isInsert, trigger.isUpdate, trigger.isDelete, trigger.isUndelete);     }
  7. Click Save

The trigger has been created.

Delete

As per Salesforce policy, you first need to create the Apex Trigger in your sandbox and then deploy from sandbox to production.


Delete

That's it! You have now configured Plauti Verify for your Object. You can now start validating your records. Check out our Usage Guide to find out more.