It looks like dynamically created WHERE clause. For example, if your query looks likeSELECT deptno, dname
FROM dept
&cp_org_where
you'd have to find where 'cp_org_where' is created. I presume it has something to do with user parameter(s) and could be defined in the AFTER-PARAMETER-FORM trigger (with possible use of a package/procedure/function).
It might look like this: if parameter's name is 'par_loc', then 'cpc_org_where' might look like 'WHERE loc = ' || :par_loc
which would then evaluate the whole query intoSELECT deptno, dname
FROM dept
WHERE loc = :par_loc