DBA Data[Home] [Help]

APPS.QA_SKIPLOT_UTILITY dependencies on QA_SKIPLOT_LOG_ID_S

Line 1261: select qa_skiplot_log_id_s.nextval

1257: PRAGMA AUTONOMOUS_TRANSACTION;
1258:
1259: x_logid number;
1260: cursor id is
1261: select qa_skiplot_log_id_s.nextval
1262: from dual;
1263:
1264: cursor c (x_id number)is
1265: select 1 from qa_skiplot_log

Line 1277: -- qa_skiplot_log_id_s is a cycle sequence

1273: fetch id into x_logid;
1274: close id;
1275:
1276: --
1277: -- qa_skiplot_log_id_s is a cycle sequence
1278: -- the purpose is to control log table size
1279: --
1280: open c (x_logid);
1281: fetch c into existing_flag;