DBA Data[Home] [Help]

APPS.EC_OUTBOUND dependencies on DUAL

Line 7: from dual;

3:
4: cursor seq_stage_id
5: is
6: Select ece_stage_id_s.NEXTVAL
7: from dual;
8:
9: cursor seq_document_id
10: is
11: select ece_document_id_s.NEXTVAL

Line 12: from dual;

8:
9: cursor seq_document_id
10: is
11: select ece_document_id_s.NEXTVAL
12: from dual;
13: c_local_chr_10 varchar2(1) := fnd_global.local_chr(10);
14: c_local_chr_9 varchar2(1) := fnd_global.local_chr(9);
15: c_local_chr_13 varchar2(1) := fnd_global.local_chr(13);
16:

Line 818: from dual;

814: if i_run_id <= 0
815: then
816: select ece_output_runs_s.NEXTVAL
817: into i_run_id
818: from dual;
819: end if;
820: ec_utils.g_run_id := i_run_id;
821: if ec_debug.G_debug_level = 3 then
822: ec_debug.pl(3,'Run Id for the Transaction',ec_utils.g_run_id);