Record Type - New Custom Record Field

Certified Senior Developer

Hi All,

I have  "Accounts" record(database is the source) in below structure,

Account ID

Account Name

Account Status

28

Test

InProgress

 

I added a "One to Many" relationship with the "Contract" Record,which is in below structure. 

Cont Primary Key

Account ID

Contracts

1

28

A1100

2

28

A2000

 

Now I want the "Accounts" record list to be displayed in below structure,where the "contracts" column will be my new custom record field,and it should be concatenated like below.

Please help me how to make this work.

Account ID

Account Name

Account Status

Contracts

28

Test

InProgress

A1100,A2000

 Thanks in Advance!!

  Discussion posts and replies are publicly visible

Parents
  • +1
    Certified Senior Developer

    Hi All,

    I got the answer. Previously I was trying to achieve this using new custom record field where I got confused how to proceed further.

    Later I understood, I can achieve this from "List" tab in records, by adding the new grid column "Contracts" and by giving the display value as fv!row[recordtype!accounts.relationships.contract.fields.contracts]

Reply
  • +1
    Certified Senior Developer

    Hi All,

    I got the answer. Previously I was trying to achieve this using new custom record field where I got confused how to proceed further.

    Later I understood, I can achieve this from "List" tab in records, by adding the new grid column "Contracts" and by giving the display value as fv!row[recordtype!accounts.relationships.contract.fields.contracts]

Children
No Data