cancel
Showing results for 
Search instead for 
Did you mean: 

how to populate marketing attributes data agianst acct identifaction ovp

Former Member
0 Kudos

Hi,

Marketing Attributes data maintained for contact and account and this Marketing Attributes details view need to display in cic agent roles under Account identification when we search account then selecting contact after confirm need to display marketing attributes only if contact/account related to marketing attribute need to show !

Here  Bp_DATA  component marketing attribute view I reused the component usage in CRMCMP_BPIDENT component now I want to populate the  data of marketing attributes against contact or account in a single view. How to populate the data in this component? Through do_init_context or WD_USAGE_INITIALIZE  what code I need to write please guide me!

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Create the component usage of component BP_DATA's MarketingAttribute view which is in window

BP_DATA/MarketingAttributesEOVPList .

In WD_USAGE_INITIALIZE method of the component CRMCMP_BPIDENT you can write the following code to bind the context nodes.

   CASE iv_usage->usage_name.

          WHEN 'YOUR USAGE NAME'.

              

  iv_usage->bind_context_node( iv_controller_type = cl_bsp_wd_controller=>co_type_component
           iv_name =
iv_usage->usage_name

           iv_target_node_name = 'CUSTOMER'
           iv_node_2_bind = 'PARTNER' ).

After binding and view configuration, marketing attributes should be visible in identification screen.

Regards,

Naresh