cancel
Showing results for 
Search instead for 
Did you mean: 

component and application configuration for RPLM_QIMT_NOTIF_MAIN_COMP

Former Member
0 Kudos

Hi folks,

I've been enhancing a used component RPLM_QIMT_NOTIF_COMP as part of RPLM_QIMT_NOTIF_MAIN_COMP and I now need to configure the display output for a new application, but it doesn't work??

I have configured components and used components of a completely bespoke application and all works correctly, but when I configure the enhanced standard components RPLM_QIMT_NOTIF_MAIN_COMP & RPLM_QIMT_NOTIF_COMP the changes don't take effect???

Am I missing something? Is there something else I need to do to enable the configuration for standard (enhanced) webdynpro components?

Many thanks,

Drew

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Drew,

You have to explicitly load the component configuration using the following:

data: l_personalization type ref to if_wd_personalization,

l_current_controller type ref to if_wd_controller,

l_config type wdy_config_key.

l_current_controller ?= wd_this->wd_get_api( ).

l_personalization = l_current_controller->get_personalization_manager( ).

l_config-config_id = 'ZCOMPCONF'.

l_config-config_type = '00'.

call method l_personalization->load_config_by_key

exporting

config_key = l_config.

Hopefully this will do the trick !

Former Member
0 Kudos

Hi Richard,

Thanks for the reply...

Your solution has been implemented, and it does indeed solved the issue... Great..!!

Cheers muchly,

Drew

Former Member
0 Kudos

Hi Drew,

How did you solve this problem, I had a similar problem.

Rgds,

Harish

Former Member
0 Kudos

Hi Richards,

Should we have this code in COMPONENTCONTROLLER method WDDOINIT ? This dint work for me. Could you please explain?

Rgds,

Harish

Answers (1)

Answers (1)

Former Member
0 Kudos

help..!! this is driving me insane!

ok, so the application config is being called >> i can set he splash screen parameter of the application config, and this triggers the splash screen etc... but the component configuration of the used components isn't working?

any hints?