Oracle EBS-Forms: How to know query behind LOV
Reddy Rajesh Reddy Abbarapu
Oracle ERP - Senior Delivery Manager | Technical Manager | Technical Solution Architect | Techno-Functional Consultant | ITIL4 | Leadership | Startup Enthusiast with Entrepreneurial Spirit
In this article, let us understand how to quickly get the query behind any list of values on Oracle Form.
Use Case Scenario:
As an example, we need to know the query behind the Nationality list of values on Employee screen.
Solution:
?? ??? ?Navigation: Help >> About Oracle Applications
?? ??? ??? ?SELECT TO_CHAR(sq.sql_fulltext)??
FROM v$session ses,?
v$sqlarea sq?? ? ? ? ? ?
WHERE ses.module LIKE '%PERWSHRG%'?
AND sq.sql_id = ses.prev_sql_id;