cancel
Showing results for 
Search instead for 
Did you mean: 

Table row Selected to Pop Up

Former Member
0 Kudos

Hi

I am working webdynpro application where I am supposed to select a row of table(From RFC) and display same into popupscreen with some other RFC executed.

My question is how to get information about user selected row details and sent to another RFC? ie if user selected row 10 , how should i get 10th row records information.

How to do this? can any one suggest me about this.

Accepted Solutions (1)

Accepted Solutions (1)

former_member186016
Active Contributor
0 Kudos

If the table is binded to the node "nodeTable". You can get the current selected row by call wdContext.currentNodeTableElement().

Regards,

Ashwani Kr Sharma

Former Member
0 Kudos

HI Ashwani

My model structure is RFC

- Output

-Zinfo

I want to get some elements from lead selected and set to context again(to use later)

Can you Please tell me how to do it?

former_member186016
Active Contributor
0 Kudos

Most probably the table will be binded to Output node.

Get its value by

wdContext.nodeOutput().getCurrentElement(); 

OR

wdContext.currentOutputElement(); 

OR

wdContext.nodeOutput().getElementAt(wdContext.nodeOutput().getLeadSelection()); 

What context node you want it to bind to ?

Regards,

Ashwani Kr Sharma

Answers (0)