cancel
Showing results for 
Search instead for 
Did you mean: 

How to create a node/array/list of elements in SalesArrangement object extension ?

Former Member
0 Kudos

Hello,

I created a SalesArrangement object extension .xbo to enhance it and create a fielity program.

I need a new node/array of elements but it's impossible to create a node in this object extension.

So i had the idea to create a new custom business object for fidelity and link it to the extension but I can't add association either to SalesArrangement.

So how can i do ?

Thank you in advance.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member186648
Active Contributor
0 Kudos

Hi,

You could define association in your custom BO to the SalesArrangement BO, and the use this as starting point, becuause you could access SalesArrangement via association from the Custom BO itself.

Thanks, Pradeep.

Former Member
0 Kudos

Thank you for your answer.

And how do I use the Custom BO node into SalesArrangement ?

former_member186648
Active Contributor
0 Kudos

What is your use case?

Former Member
0 Kudos

I want to display an Embedded component in Sales data (SalesArrangement) tab in Customer but it seems impossible.

Next, i want to do operations with the Fidelity data (my custom BO) and the SalesArrangement data in a script for example :

if (SalesArrangement.DivisionCode == "A") { Fidelity.program = "A program";     }

Maybe i should join Fidelity.bo with Customer.xbo by creating a new tab and try to get the Sales Data.

Former Member
0 Kudos

You need to create a shadow BO and then use an Embedded Component. You need to make sure it has the same ID as Alternative Key as the SalesArrangement BO.

Will