DBA Data[Home] [Help]

APPS.PAY_MONITOR_BALANCE_RETRIEVAL dependencies on HR_UTILITY

Line 31: hr_utility.set_location('Entering: '||l_proc, 10);

27: --
28: BEGIN
29: l_proc := 'pay_monitor_balance_retrieval.monitor_balance_retrieval';
30: --
31: hr_utility.set_location('Entering: '||l_proc, 10);
32: --
33: -- this will be a call to get_profile once the profile is set up
34: --
35: l_profile := fnd_profile.value('HR_MONITOR_BALANCE_RETRIEVAL');

Line 38: hr_utility.set_location(l_proc, 20);

34: --
35: l_profile := fnd_profile.value('HR_MONITOR_BALANCE_RETRIEVAL');
36: IF l_profile = 'Y' THEN
37: --
38: hr_utility.set_location(l_proc, 20);
39: --
40: -- if the session variable MONITOR is null, return the default - 'Monitoring
41: -- all calls to route'
42: --

Line 47: hr_utility.set_location(l_proc, 30);

43: l_module_name := nvl(get_session_var('MONITOR')
44: , 'Monitoring all calls to route');
45: BEGIN
46: --
47: hr_utility.set_location(l_proc, 30);
48: --
49: -- call at to insert row into table
50: --
51: output_bal_retrieval_data(l_module_name

Line 61: hr_utility.set_location(l_proc, 40);

57: END;
58: --
59: ELSE -- profile HR_MONITOR_BALANCE_RETRIEVAL is not Y
60: --
61: hr_utility.set_location(l_proc, 40);
62: END IF;
63: --
64: hr_utility.set_location('Leaving: '||l_proc, 50);
65: --

Line 64: hr_utility.set_location('Leaving: '||l_proc, 50);

60: --
61: hr_utility.set_location(l_proc, 40);
62: END IF;
63: --
64: hr_utility.set_location('Leaving: '||l_proc, 50);
65: --
66: END monitor_balance_retrieval;
67: -------------------------------------------------------------------------
68: -- PROCEDURE output_bal_retrieval_data

Line 89: hr_utility.set_location('Entering: '||l_proc, 10);

85: BEGIN
86: --
87: l_proc := 'pay_monitor_balance_retrieval.output_bal_retrieval_data';
88: --
89: hr_utility.set_location('Entering: '||l_proc, 10);
90: --
91: -- insert values into table pay_monitor_balance_retrievals
92: --
93: insert into pay_monitor_balance_retrievals

Line 110: hr_utility.set_location('Leaving: '||l_proc, 20);

106: );
107: --
108: commit;
109: --
110: hr_utility.set_location('Leaving: '||l_proc, 20);
111: --
112: END output_bal_retrieval_data;
113: -------------------------------------------------------------------------
114: -- SESSION VARIABLE FUNCTIONS