How to get runtime LOV query script

How to get runtime LOV query script
  1. Get SID in your form

In the form, Help > About, to check this form Session SID.

How to get runtime LOV query script

NOTE: In different form, Session SID is different.

Then open LOV to trigger sql query, eg. open Subinv LOV in this misc txn form.

How to get runtime LOV query script

2. Get LOV SQL

Get prev_sql_addr, sid is the Form Session SID value which we get in step 1

SELECT s.prev_sql_addr,s.sql_address FROM v$session s WHERE s.sid =741;

How to get runtime LOV query script

Then execute below query, you will get LOV query, t.address is PREV_SQL_ADDR.

SELECT sql_text FROM v$sqltext_with_newlines t WHERE t.address ='4B664778'ORDER BY t.piece;

How to get runtime LOV query script


转载请注明出处:http://blog.****.net/pan_tian/article/details/7662881