cancel
Showing results for 
Search instead for 
Did you mean: 

Embedded Component - Add Custom BOs

Former Member
0 Kudos

Hello all,

We need to link multiple custom BO (MyEvent) to a standard BO (Lead) using an embedded component.

One Lead can have multiple MyEvent.


businessobject MyEvent {

        [AlternativeKey]  [Label ("Event ID")] element EventID: ID;

  [Label ("Event Description")]element EventDescription: LANGUAGEINDEPENDENT_EXTENDED_Text;

}


businessobject MyLeadEvent {

           [AlternativeKey] [Label ("Lead ID")]element LeadID : ID ;

          node eventssegment[0,n] {

                 [Label ("Event ID")]element EventID : ID;

                 association ToMyEvents [0,1] to MyEvent;

         }

}

In the embedded component, the user will add the MyEvent BO to the list.

I have created the Embedded Component for MyLeadEvent, I have added the Add Row button with the List AddRow Operation.

However the Add button is disabled.

Anything else that I might be missing in the embedded component UI?

Accepted Solutions (1)

Accepted Solutions (1)

former_member200567
Active Contributor
0 Kudos

Hi Tommy,

  Please have a look at this.

Hope this helps,

Fred

Former Member
0 Kudos

This is exactly what i need. Thank you!

Answers (0)