CS.CS_INCIDENTS_ALL_B seems to be the SYNONYM too which points somewhere outside APPS.CS_INCIDENTS_B_SEC.
Could you please post the query plan for both queries?
This will show you the real underlying tables.
EXPLAIN PLAN FORFROM TABLE(DBMS_XPLAN.display())EXPLAIN PLAN FORFROM TABLE(DBMS_XPLAN.display())You have ROW LEVEL SECURITY enabled.
The final table user function FND_GENERIC_POLICY.GET_PREDICATE gets called each time you are selecting from is apparently a view, there is a filtering condition in access the plantable and limits access to some rows.
Could
It returns different results depending on how do you please run access the following queries?
SELECT * owner = 'CS' AND synonym_name = 'CS_INCIDENTS_ALL_B' owner = PRIOR table_owner AND synonym_name = PRIOR table_name owner = 'APPS' AND synonym_name = 'CS_INCIDENTS_B_SEC' owner = PRIOR table_owner AND synonym_name = PRIOR table_nameThis will show table: directly or through the full synonym chainSYNONYM.
Update2
Probably you have ROW LEVEL SECURITY enabled
You'll need to look into the function and see what's going on (or post the function text here).Could you please run:
SELECT *
