DBA Data[Home] [Help]

APPS.GL_SCHEDULER_PKG dependencies on DUAL

Line 44: FROM sys.dual;

40:
41: -- initialize language code for the user environment
42: SELECT userenv( 'LANG' )
43: INTO lang_code
44: FROM sys.dual;
45:
46: -- initialize message buffer to hold the description which
47: -- will be used while registering periods, disjunctions and classes.
48: msgbuf := fnd_message.get_string( 'SQLGL', 'GL_SCH_DESC_MESSAGE' );

Line 99: FROM SYS.dual;

95: -- select unique number from sequence to name the new period and
96: -- the disjunction associated with it
97: SELECT TO_CHAR( gl_concurrent_schedules_s.NEXTVAL )
98: INTO curr_seq_val
99: FROM SYS.dual;
100:
101: -- register new concurrent release period
102: conc_period := CONCAT( curr_seq_val, '_P' );
103: IF FNDCP_SCH.Period_Exists( 'SQLGL', conc_period ) = TRUE THEN