DBA Data[Home] [Help]

APPS.GHR_MTO_INT dependencies on GHR_PROCESS_LOG_S

Line 89: -- the value ghr_process_log_s.nextval is used in place of the

85: -- The concurrent program request id is appended to the
86: -- name passed and if the result is > 29 the name is truncated
87: --
88: -- If the procedure is not called by the concurrent manager then
89: -- the value ghr_process_log_s.nextval is used in place of the
90: -- request id
91: --
92: procedure set_log_program_name(p_log_program_name varchar2) is
93: l_prog_name varchar2(30);

Line 99: select to_char(ghr_process_log_s.nextval)

95: l_name_len number;
96: l_proc varchar2(72) := g_package||'set_log_program_name';
97:
98: cursor cur_get_seq is
99: select to_char(ghr_process_log_s.nextval)
100: from sys.dual;
101:
102: begin
103: hr_utility.set_location('Entering:'||l_proc, 10);