Hi Andre, Gunjan and Blue
The problem is that i made an entity and put a complex range using computed method that represents the following:
if (
((Id2 == A || Id2 == C) && computedColumnId1 == null)
||
(
(Id2 == B && ComputedColumnId2 == A)
|| (Id2 == D && ComputedColumnId2 == E))
)
)
Now i want to add another OR to the range that says if "Id2= X && virtual field = value
this virtual field is why i asked the question. I know i can't add computed columns or virtual fields made in the entity inside the range method of the entity. But if i add a computed column in the view, then i can use it inside the range method ( just like i did for computedColumnId1 and computedColumnId2 shown above)
But to be able to get the value of this virtual field, i need to write multiple select statements that i don't think i can do in computed column. Is there a way that i can write x code in view to fill a virtual field. If not what should i do to add this new range to the entity?