cancel
Showing results for 
Search instead for 
Did you mean: 

Missing SAP Standard Block, for Products, on Trade Promotion Screen

Former Member
0 Kudos

Hello -

We have upgrade to CRM 2007. On the trade promotions creation screen, the Block for Products, an SAP standard, cannot be added even by personalization. We have have checked OSS notes 1026475 and 1111649, niether helped. We have also tried setting the the settings back to default in the UI, but still no products block. Anyone have advice or a similar experience?

Thanks

George

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello Erika -

thanks for your reply.

We went into the transaction BSP_WD_CMPWB, the compnent workbench, and looked at component TPMOE, in view TradePromotionOP, and checked the configs, Products is there for all them. Currently we have SAP logged onto our system to look into this.

For the second half of the email, there is code, to get the config key at runtime. Should we should a breakpoint on this code, is this in a method, function, or program?

Thanks,

George

erika_schlachter
Active Participant
0 Kudos

Hi,

the view for the Products block is ProductEOL, in the UI component TPMOE for trade promotions.

Now if the Product Block is not available on the overview page I would first check the configuration of the overview page TradePromotionOP, of the same UI component. I assume that the ProductEOL view is not included in the configuration.

And there could be more than one configuration, in which case you should check the one which is used in the runtime.

to get the config keyin the runtime use following code sample.

DATA: lv_profile TYPE crmt_ui_frw_profile,

lv_prof TYPE REF TO if_crm_ui_profile.

lv_prof = cl_crm_ui_profile=>get_instance( ).

lv_profile = lv_prof->get_component_profile( iv_profile_id = 'ROLE_CONFIG_KEY' ).

Good luck and best regards,

Erika