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_第1张图片

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张图片

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_第3张图片

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_第4张图片


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



你可能感兴趣的:(Runtime)