DBA Data[Home] [Help]

APPS.HR_UTILITY dependencies on FND_SESSIONS

Line 53: 2) Removed insert/delete into/from fnd_sessions

49:
50: Changes to switch_logging_on, switch_logging_off:
51: 1) Replaced raise_application_error call with
52: hr_utility.raise_error
53: 2) Removed insert/delete into/from fnd_sessions
54:
55: Changes to log_at... procedures
56: 1) Replaced if-then-else checks for p_message
57: with nvl call

Line 947: Inserts a row into FND_SESSIONS for the date passed for the current

943: /*
944: NAME
945: fnd_insert
946: DESCRIPTION
947: Inserts a row into FND_SESSIONS for the date passed for the current
948: session id
949: */
950: procedure fnd_insert (l_effective_date in date) is
951: begin

Line 952: insert into fnd_sessions (session_id, effective_date)

948: session id
949: */
950: procedure fnd_insert (l_effective_date in date) is
951: begin
952: insert into fnd_sessions (session_id, effective_date)
953: values (userenv('SESSIONID'), trunc(l_effective_date));
954: end fnd_insert;
955:
956: -------------------------------- read_trace_pipe -----------------------------