cancel
Showing results for 
Search instead for 
Did you mean: 

FPM + ViewContainerUI

ged_hurst
Participant
0 Kudos

Hi,

I've developed an OIF FPM application to manage the lifecycle of certain objects.

I've also implemented another component for searching those objects and display the search results into a WebDynpro Table.

Now when the user selects a row in the table the FPM application should be called passing on the ID of the selected object in order to display or modify it.

I've created a ViewContainerUI element in the search application but don't know how to embed the FPM Application I just created.

Thank you for your help.

Regards

Accepted Solutions (1)

Accepted Solutions (1)

saravanan_narayanan
Active Contributor
0 Kudos

Hello,

i doubt whether you can embed the FPM application in the ViewContainerUIElement because the FPM application is based on configuration.

Construct the FPM application URL using the utility method cl_Wd_utilities->construct_wd_url and then launch it in different window.

BR, Saravanan

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

To get the selected data, you can use

lr_node = wd_context->get_child_node( "<context_node_name>").

lr_node->get_selected_elements().

As you have created a ViewContainerUI element, you need to assign a view to this element. Go to Window of view in which you have created ViewContainerUI element and assign the view to it.

Regards,

ALok.