Obj Browse issue

Hi,

I have to fetch results using obj browse using filter condition.
I have kept like XYZ!=Param.Postal

My Param.postal in clipboard is = “1”,“2”,“3”,“4”,“5”,“6”.Still iam getting results with 1,2,3,4,5,6 in my results. Cant we use multiple values for obj-browse conditions?

@chinl

Hello,

Just to clarify, you would like to use multiples values for a single filter in the Obj-Browse method?

Hi @chinl

You can’t directly pass multiple values like “1”,“2”,“3” in a single != condition in Obj-Browse — it treats that as one string, not separate values. Instead, try adding multiple filter conditions on the same property. For example:

.Postal != “1”

.Postal != “2”

.Postal != “3”

…and so on.

These will be combined with AND logic, so it should correctly exclude all the values you’re trying to filter out.

@chinl

Try using Report Definition and call it in Activity.

@RusselK1 Yes

@Kishore Kumar Madduri --Sure.Due to specific scenarios(as this is reused in multiple places in my app)i would like to go with Obj-browse only. For now i have fixed this using multiple filters instead of CSV