Display different record types as related list under an object

page-layoutrecord-type

We have a 'Policy' object, with several record types

  • Air
  • Car
  • Type
    etc…

They all have a lookup to 'Account', but each has it's own set of custom fields, that's unique to the policy.

I want to display on the Account page (lightning page) the different policies, but each in it's own related list.

One solution would be to create multiple policy objects, to overcome the request, however, the handling of the policies are all the same, so it does not make sense.

Is it possible to display the related list per record type, on the Account page?

Best Answer

Based on your requirement you need related list with filtered records based on recordtype. As of now, filtered related list is not possible by standard salesforce functionality. please see this idea: https://trailblazer.salesforce.com/ideaView?id=08730000000Brbg

Alternate Approach would be to create a customizable lightning datatable using lwc or aura or you can use already prebuilt solutions.

please refer to this thread and prebuilt solutions mentioned by David Reed for more details:

Filter in Related List using fields from related record

Related Topic