Hi ,
I am trying to use a PU function and use the result as a filter within another PU function.
When i try below PQL it works fine.
PU_LAST( OBJECT, EVENT_LOG,EVENT_LOG NOT IN ( PU_LAST(OBJECT,EVENT_LOG)))
But when i try to add another argument for the ‘not in ‘ it returns nulls . In this example the ‘ABC’ is the additional argument for the ‘not in’
PU_LAST( OBJECT, EVENT_LOG,EVENT_LOG NOT IN ( PU_LAST(OBJECT,EVENT_LOG),’ABC’)) .
have also tried splitting the filter using AND but still same issue persists.
Any insights would be much appreciated.