Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can someone please tell me whats wrong in this syntax?
count
({$< CheckinRank = {">=0"}, DepartureYear = {"=$(vLastYear)"}, WeekWeekDayNum = {"<$(vWeekWeekDay)"} >}
*
{$< CheckinRank = {">=0"}, DepartureYear = {"=$(vLastYear)"}, WeekWeekDayNum = {">=$(vLast3WeekWeekDay)"} >}
CFSKEYBook)
I don't think using two set expressions within an aggregation function is valid syntax or works like expected. What do you want to achieve?
If you want to combine the limits for WeekWeekDayNum into one search expression, try:
count
(
{$< CheckinRank = {">=0"}, DepartureYear = {$(vLastYear)}, WeekWeekDayNum = {">=$(vLast3WeekWeekDay)<$(vWeekWeekDay)"} >}
CFSKEYBook)
I don't think using two set expressions within an aggregation function is valid syntax or works like expected. What do you want to achieve?
If you want to combine the limits for WeekWeekDayNum into one search expression, try:
count
(
{$< CheckinRank = {">=0"}, DepartureYear = {$(vLastYear)}, WeekWeekDayNum = {">=$(vLast3WeekWeekDay)<$(vWeekWeekDay)"} >}
CFSKEYBook)
Thank u exactly what I wanted.
Håkan