cancel
Showing results for 
Search instead for 
Did you mean: 

Opportunity on all partner in partner team

0 Kudos

Hello,

in standard the component BP_BPBT View AccountOpportunitiesOV show the opportunities only for partner functiontype 0006 (Contactpartner). I want to see the related opportunities for all partner exist in the partner team.

For example I create a opportunity and have 2 partner in the partner team.

Partner A function type 0006

Partner B function type 0000 (undefined).

If I switch to the business partner view is see the opportunity only for partner A.

Anybody here can help me?

Kind regards

Thomas

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

You can achieve this via badi CRM_BP_UIU_BT (filter value BPQOPP) . Here is an example code:

ls_selrow-attr_name = 'PARTNER_FCT'.

ls_selrow-sign = 'I'.

ls_selrow-option = 'EQ'.

ls_selrow-low = 'YA100000'.

APPEND ls_selrow TO ct_selection_param.

former_member191572
Contributor
0 Kudos

Hi ,

Just debugg and identify where the values are added into the collection. There redefine the method and write ur own logic and append the values into the collection.

former_member214667
Contributor
0 Kudos

Hi Thomas,

You need to create a new view with one value node; read data as you need using existing BOL relations and fill this value node to see specific data.

Regards,

Shiromani