DBA Data[Home] [Help]

APPS.PAY_DK_BIK_UTILITY dependencies on FND_SESSIONS

Line 29: -- Use either the supplied date, or the date from fnd_sessions

25: l_value_num NUMBER;
26:
27: begin
28: --
29: -- Use either the supplied date, or the date from fnd_sessions
30: --
31: if (p_effective_date is null) then
32: if (g_effective_date is null) then
33: begin

Line 36: from fnd_sessions

32: if (g_effective_date is null) then
33: begin
34: select effective_date
35: into l_effective_date
36: from fnd_sessions
37: where session_id = userenv('sessionid');
38: end;
39: else
40: l_effective_date := g_effective_date;