cancel
Showing results for 
Search instead for 
Did you mean: 

Hyperlink to each row(record) of Table

Former Member
0 Kudos

Hi All,

My requirement is I am geting data using Adaper RFC call and displaying in a table.I want all the rows of the

table has hyperlink,so that if i am selecting any row the details of that row should be show in either in another view or window.

Thanks & Regards

muna

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi mukesh

After retriving data from RFC call it is displaying in table.So how i will provide hyperlink to rows of tables.

Thanks & Regards

sailajit

Former Member
0 Kudos

hi,

You can add any UI Element in the Colum of the table.For the hyper link you can use the Link to Action UIelement.

Kind Regards

Mukesh

Former Member
0 Kudos

Hi

Create an action for the table in the onLeadSelect event.

Get the current node values.

//get the cuttent table node's element value

String id=wdContext.current<TableName>Element().get<Param>();

// set the selected value to next view's element

wdContext.current<nextView>Element().set<param>(id);

//fire the outplug to next view

Create a outboundplug to another view . and call the plug in this action.

Kind Regards

Mukesh