cancel
Showing results for 
Search instead for 
Did you mean: 

NAVIGATE TO STANDARD WD FROM 'Z' WD

Former Member
0 Kudos

HI EXPERT´s,

i need to call a standard webdynpro from my 'z' webdynpro.

My 'Z' WD show ALV with one field navigable. When USER click in this field i want show FPM_IDR_COMPONENT component?

is it posible?

I have seen it is very difficult i don´t know and I do not know if I have an easier way to do

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Thank´s all,

I have a 'Z' WD that it is show ALV with navigate field, when the user do click in this field (licitacion), the 'Z' WD show standard WD FPM_IDR_COMPONENT and /SAPSRM/WDC_DODC_RFQ_H_BD .

i have similar functionality that standard WD SALV_WD_TABLE click in field and show WD /SAPSRM/WDC_DODC_RFQ_H_BD and FPM_IDR_COMPONENT component.

not find a way to do this. It´s very dificult

Former Member
0 Kudos

As i already said , it is done probably by an component configuration or a feeder class.

Debug the existing SAP component and write down the components and classes involved in that , after that see how you can construct your application. Probably it is also using Lauch pad to navigate to the desired URL.

As you already mentioned it is not just easy for every beginners in this area.

Former Member
0 Kudos

HI,

You can use the below code to open a new component from the existing window.

data: str type string,

l_window1 type ref to if_wd_window_manager,

l_cmp_api type ref to if_wd_component,

result1 type ref to if_wd_window.

call method cl_wd_utilities=>construct_wd_url

exporting

application_name = 'Component name'

importing

out_absolute_url = str.

l_cmp_api = wd_comp_controller->wd_get_api( ).

l_window1 = l_cmp_api->get_window_manager( ).

result1 = l_window1->create_external_window(

url = str ).

result1->open( ).

In your case,FPM_IDR_COMPONENT is a part of standard FPM component and the layout is build dynamically...So exactly what is your requirement.?

Regards,

Simi A M

Former Member
0 Kudos

Perhaps you should explain more about what you are trying to do.

FPM_IDR_COMPONENT is part of the FPM frame work.

If you want to use this then you have to approach this as FPM application.

You need to create a application configuration, in that define the fpm_idr_component configuration .