cancel
Showing results for 
Search instead for 
Did you mean: 

Pop-Up inbound-plug parameters

0 Kudos

Hello,

i want co call a Pop-up with a interface view from another component.

The code i use:


data lo_window_manager type ref to if_wd_window_manager.
data lo_api_component  type ref to if_wd_component.
data lo_window         type ref to if_wd_window.

lo_api_component  = wd_comp_controller->wd_get_api( ).
lo_window_manager = lo_api_component->get_window_manager( ).
lo_window         = lo_window_manager->create_window_for_cmp_usage(
                   interface_view_name    = 'W_MAIN'
                   component_usage_name   = 'CALL_TRANS'
                   message_display_mode   = if_wd_window=>co_msg_display_mode_selected
                   ).

lo_window->open( ).

How can i supply the parameters i defined in the default plug of this window?

By calling the wd with an url, i can supply the parameters (&<parameter=<value>).

Best regards,

Tobias Arnold

Edited by: Tobias_Arnold_GMHSO on Jan 11, 2012 11:13 AM

Solved

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Solved

Former Member
0 Kudos

Hi,

Please share the solution.

Thanks,

Radhika

0 Kudos

it`s pretty easy:

In my Compponent 'CALL_TRANS' i created an Interface Node with my parameters.

The Component which call the CALL_TRANS Comp, mapped this Node and supplied the data.

regards Tobias Arnold