I’m working in IFS Cloud. I am creating Advanced Searches to save in the base profile. My versions are below:
- IFS Cloud Web version: 22.2.4.20230105140629.0
- IFS OData provider version: 22.2.4.20230106102343.0
I create the following search using the basic search:
((Objstate = IfsApp.ActivityListHandling.ActivityState'Released') AND ActivityResponsible = '#PERSON_ID#') AND PlannedCost > 0
I need it to look for costs where Actual are more than planned, so I modify it to this one:
((Objstate = IfsApp.ActivityListHandling.ActivityState'Released') AND ActivityResponsible = '#PERSON_ID#') AND PlannedCost < ActualCost
It does not work until I replace #PERSON_ID# with the logged in user. I’ve experienced this on several searches. Is this a known bug?