cancel
Showing results for 
Search instead for 
Did you mean: 

graphical mapping: delete queue entries "SUPPRESS"

Former Member
0 Kudos

Hi,,

does anybody know, how to delete Queue-Enties with value: "SUPPRESS"

Thanks Regards Mario

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

remove context than splitByValue

Thanks, Mario

Edited by: Mario Müller on Jul 30, 2008 9:02 AM

Former Member
0 Kudos

Or build a user defined function that does this for you using the code below:

for(int i = 0; i < a.length; i++)

if(!a<i>.equals(ResultList.SUPPRESS)) result.addValue(a<i>);