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

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Harshit Bumb (Appyzie)

    Im' on an interface, i'm populating fields from record A and i want to add items on recordA that have a cardinality of M.

    Let's say, my record A is an order, record b contains products related to the order.

    What i want to do is to polulate record A (and i'm ok with it), populate record b1 (and still it's ok), then i want to add a new line to add a new product and populate it. What i cannot do so far, is to add a new record (b2)  to insert a new product.

Children