Adding a record type in a related record type

Certified Lead Developer

Hi,

I have a record type whose structutre is:

Start:

local!RecordA (
- field 1,
- field n,
- Relationship: Record b1 (
--- field 1,
--- field 2
)

Record a --> b 1:m relationship.

After some manipulation, I want record a to become:

End

local!recordA (
- field 1,
- field n,
- Relationship: { 
        record b1 (field 1, field2), 
        record b2 (field 1: null, field2: null)}

How can i go from start to End? Could you help me?

I hope the aim is clear.

Thanks a lot

  Discussion posts and replies are publicly visible