cancel
Showing results for 
Search instead for 
Did you mean: 

Navigation from webdynpro application

Former Member
0 Kudos

Hi,

How do i navigate from webdynpro application to a transactional iview?

Thanks.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Candy ,

You can create a iFrame in your webdynpro application and then you can give the URL to that iFrame to show the transaction.

ref:

link:[;

Also have a look at the following doumentation

link:[http://help.sap.com/saphelp_nw70/helpdata/EN/02/f9e1ac7da0ee4587d79e8de7584966/frameset.htm]

I would suggest you to further explore the things in

Expert Forums » SAP NetWeaver » Composite Application Framework

regards ,

amit

Former Member
0 Kudos

Hi ,

Navigation is possible through Navigate_absolute method provided we have to test the navigation on Portal. But how would i pass & receive the parameters from Web dynpro to the transactional Iview.

Former Member
0 Kudos

Hi,

Any idea on passing the parameters from Webdynpro to transactional Iview

Former Member
0 Kudos

Design changed to input values in to the transactional iview

Former Member
0 Kudos

Hi,

[]

Former Member
0 Kudos

Hi Candy

On Clicking on button or any action in webdynpro application it has to trigger transactional iview for that

Include this code in action

data lr_componentcontroller type ref to ig_componentcontroller .

data l_api_componentcontroller type ref to if_wd_component.

data lr_port_manager type ref to if_wd_portal_integration.

lr_componentcontroller = wd_this->get_componentcontroller_ctr( ).

l_api_componentcontroller = lr_componentcontroller->wd_get_api( ).

lr_port_manager = l_api_componentcontroller->get_portal_manager( ).

Data: target type string.

*pcd path of the transactional iview

target = <Pcd Path of iview>.

call method lr_port_manager->navigate_absolute

exporting

navigation_target = target .

Thanks

Tulasi Palnati

abhimanyu_lagishetti7
Active Contributor
0 Kudos