cancel
Showing results for 
Search instead for 
Did you mean: 

FILTER the node records dynamically?

diegohs
Active Participant
0 Kudos

Hi,

I'd like to know if its possible to filter node records dinamycally.

I have a Node(list) with 10 records, sometimes I need to show the node records which Column "A"<100. Obviously I dont want to execute the bapi several times.

Somebody knows if its possible ?

Thanks a lot for your help ! 😃

Best mexican regards

Diego

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Just behaves as in regular java program -- cache result in one variable, populate another variable on demand applying filtering.

1. Save your result as simple instance variable in controller class.

2. Assign supply function to the node, that takes some kind of collection from result, scan it, verify conditions and add only those elements to node these pass certain criteria

VS