cancel
Showing results for 
Search instead for 
Did you mean: 

How to get URL-Parameter from outside WebDynpro (BAdI)

Former Member
0 Kudos

Hi Experts,

I implemented one BAdI for FPM_OVP_COMPONENT with two different configurations. Now I have to check in the BAdI which configuration is called.  

I don`t reach the method "HANDLEDEFAULT" and can`t reference to IF_COMPONENTCONTROLLER.  

My question:  How can I get URL parameters when I am not in webdynpro?

Cheers

Dieter

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

A colleague gave me the solution - if you know it, it`s easy

For anyone who get`s the same problem. Here`s the solution:

  DATA: lo_fpmin TYPE REF TO if_fpm,

            ls_runtime_info TYPE fpm_s_runtime_info.

  lo_fpmin = cl_fpm_factory=>get_instance( ).

  ls_runtime_info = lo_fpmin->get_runtime_info( ).

  ls_runtime_info-config_id contains, what I was searching for.

Cheers

Dieter

Answers (0)