" /> IRD Expressions / Segmentation Block - Genesys CTI User Forum

Author Topic: IRD Expressions / Segmentation Block  (Read 914 times)

Offline PFCCWA

  • Hero Member
  • *****
  • Posts: 655
  • Karma: -7
IRD Expressions / Segmentation Block
« on: September 26, 2023, 11:21:45 AM »
Advertisement
Hello,

thought i knew IRD well enough for this query but i am trying use an expression in a generic segmentation block within IRD but the calls are not following the rule in the string.

so in the block, the expression is:
vPass = 'All' | vPass = 'data1' | vPass = 'data2' | vPass = 'data3'| vPass = 'data3' | vPass = 'data4' & vCode = 'ABCD'

but a call with attached/userdata of vPass='All' and vCode='CCCC' is still following the above rule. i only want call with vCode='ABCD' AND and of the vPass values listed to follow that rule.

i am trying to avoid using every vPass and vCode combination for each expression (there are a lot) so want to use the block to pick out certain one.

thanks

Marked as best answer by PFCCWA on September 27, 2023, 12:53:46 AM

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Re: IRD Expressions / Segmentation Block
« Reply #1 on: September 26, 2023, 11:44:22 AM »
Hi,

Try this one: (vPass = 'All' | vPass = 'data1' | vPass = 'data2' | vPass = 'data3'| vPass = 'data3' | vPass = 'data4') & vCode = 'ABCD'

R.

Offline PFCCWA

  • Hero Member
  • *****
  • Posts: 655
  • Karma: -7
Re: IRD Expressions / Segmentation Block
« Reply #2 on: September 26, 2023, 11:54:16 AM »
[quote author=René link=topic=12460.msg55398#msg55398 date=1695728662]
Hi,

Try this one: (vPass = 'All' | vPass = 'data1' | vPass = 'data2' | vPass = 'data3'| vPass = 'data3' | vPass = 'data4') & vCode = 'ABCD'

R.
[/quote]

thanks, worked like a charm!