cancel
Showing results for 
Search instead for 
Did you mean: 

Navigation

Former Member
0 Kudos

Hai all....

Can any one say me how to navigate from a view in one window to a view which is in another window....?

will be rewarded if helpful......

Thanks & regards,

Jhansi.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Jahnsi,

navigation is generally intended for use within a window.

There is no normal need to have multiple windows unless you have specific sets

of views, say for a type of client. Or Special popup windows.

ie A window for popups and a window for all other views should be sufficient.

Note you can embedd all the views inside a window.

Views can embedd other views.

So You can achieve a full set of view constellations inside a window.

However, If you absolutely must (why im not sure) navigate from 1 window to another

inside 1 component,

as opposed to opening a second window (such as popup)

(... then...Hack option...for lazy hacks like me)

Declare Parameter URL on window EXIT plug.

Place the URL string to START the other window on the desired plug in the URL parameter.

No NAV link per se. Only an exit to another application.

The other application just happens to start window2.

or use MAIN hosting Component.

eg WDC FRAME with WINDOW OUTER

Declare the component usage to the actual component.

View Frame1 View frame2 added to Window "outer"

These Views both embed your actual component.

Then use cross component navigation to navigate from

exit plug to one start plug.

regards

Phil

Former Member
0 Kudos

Hi,

you should check the window plugs in combination with view navigation plugs:

<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/99/ab034105d0f223e10000000a155106/content.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/99/ab034105d0f223e10000000a155106/content.htm</a>

grtz

Koen

Former Member
0 Kudos

hai koen..

Thank u very much for the reply .I am able to create navigation using the window plug as is said in the document but i need to fire the outbound plug of the window in the action of a button of a view,generaly it is just possible to fire the outbound plug of that view alone so what should i do to fire the outbound plug of a window from a view....

Thanks &regards,

Jhansi

Former Member
0 Kudos

Hi.

You can connect an outbound of a view with an inbound of a window. In the

handleer method of the inbound of the window you can fire the outbound of the

window.

Cheers,

Sascha

Former Member
0 Kudos

Hi,

in the properties of your view, you should add the usage of your view

then in the action handler, press the 'magic wand' on top of the editor

and select: method call in used controller

select the window as component name

and the method fire_x_plug

grtz

Koen

Former Member
0 Kudos

ok thats quiet easier ... I did not know that yet