cancel
Showing results for 
Search instead for 
Did you mean: 

table with link

Former Member
0 Kudos

i have a table

itemno name price

0010 BMW 500

0020 BMX 350

column itemno is link

when i click the 0010 ..I want to link to another page that show the detail of the page...

LinkToUrl....what should i set in linktourl properties..or create any node ?

how to set the path?

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

hi,

if you want to open a new webdynpro window,use the LINKTOACTION UI element.

write the following code for its action:

IWDWindowInfo windowinfo = wdComponentAPI.getComponentInfo().findInWindows("DescWin");
			IWDWindow window = wdComponentAPI.getWindowManager().createWindow(windowinfo,true);
			window.setWindowPosition(WDWindowPos.CENTER);
			window.setWindowSize(225,225);
	
			wdContext.currentContextElement().setCtx_va_desc_window(window);
			window.open();

hope this solves your problem

please give reward points if this helps

Former Member
0 Kudos

Hi Virag.

Aren't we in the WebDnpro Abap Forum?

Cheers,

Sascha

Former Member
0 Kudos

Hi,

you can use outbound plug firing,

<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/1f/464941db42f423e10000000a155106/frameset.htm">this</a> will give you a good idea, you can define inbound

and outbound plugs with parameters (itemno) and in the handling of the inbound

plug of your detail view, you can fetch the details of the passed parameter.

The outbound parameter you can get with fetching the selected element in your context

node of your table.

grtz

Koen

Former Member
0 Kudos

Hi Yzme,

You can make use of OBN call and pass the value as application parameter by building the name-value internal pair.

Creating another node wouldnt help if you want to call the application in New Browser Window but yes if you can go for component reuse then in that case you can have a context node,interface, created in your called application and bind this data to the attribute or pass it to the interface method of the called application, which is suppose to process this info.

Hope this helps and if yes then please do award points.

Regards,

Anoop