cancel
Showing results for 
Search instead for 
Did you mean: 

info about Table Filter

Former Member
0 Kudos

hi,

i am developing a webdynpro application which uses adaptive rfc model to fetch data from R/3.

The data is getting populated in a table. Now i need to filter this table according to a particular value(eg user id) and then display the filtered data in the next view.

can anyone help me how to proceed with this.

Regards

Priya Ghosh

Accepted Solutions (1)

Accepted Solutions (1)

arun_srinivasan
Contributor
0 Kudos

hi

check out this blog

<a href="/people/subramanian.venkateswaran2/blog/2005/05/10/filtering-table-values-using-webdynpro

regards,

Arun

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi:

try:

/people/peter.vignet/blog/2007/01/03/generic-web-dynpro-java-table-filter

regards

Former Member
0 Kudos

Hi,

Try using ALVs

Regards

Ayyapparaj

Former Member
0 Kudos

Hi,

try in back end side it is better way other way do you need.

U try like this.

int size=wdContext.nodeI<tablenode>().size();

for (int idx = 0; idx < size; idx++) {

IPrivate<View>.I<_<tablenode>Element val =(IPrivate<View>.I<tablenode>Element) wdContext.nodeI<tablenode>().getElementAt(idx);

String status = val.getStatuserID();

if(status.equalignorecase("12"))

val.setStatuserID(name);

}

Like this you can do.

Thanks,

Lohi.

Message was edited by:

Lohitha M

Former Member
0 Kudos

Hi,

Go through <a href="/people/subramanian.venkateswaran2/blog/2005/05/10/filtering-table-values-using-webdynpro.

Also search for "Table Filter" in SDN.

Regards,

Satyajit.

Former Member
0 Kudos

Check this blog

/people/subramanian.venkateswaran2/blog/2005/05/10/filtering-table-values-using-webdynpro

Regards, Anilkumar