DBA Data[Home] [Help]

APPS.HR_CTX_BUS dependencies on HR_UTILITY

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

100: and object_name =p_view_name;
101:
102: --
103: Begin
104: hr_utility.set_location('Entering:'||l_proc,10);
105: --
106: -- Check value has been passed
107: --
108: hr_api.mandatory_arg_error

Line 114: hr_utility.set_location('Entering:'||l_proc,20);

110: ,p_argument => 'VIEW_NAME'
111: ,p_argument_value => p_view_name
112: );
113:
114: hr_utility.set_location('Entering:'||l_proc,20);
115: open csr_name;
116: fetch csr_name into l_key;
117: if (csr_name%notfound)
118: then

Line 125: hr_utility.set_location(' Validated:'||l_proc,30);

121: fnd_message.raise_error;
122: end if;
123: close csr_name;
124:
125: hr_utility.set_location(' Validated:'||l_proc,30);
126: exception
127: when app_exception.application_exception then
128: if hr_multi_message.exception_add
129: (p_associated_column1 => 'HR_KI_CONTEXTS.VIEW_NAME'

Line 131: hr_utility.set_location(' Leaving:'||l_proc, 40);

127: when app_exception.application_exception then
128: if hr_multi_message.exception_add
129: (p_associated_column1 => 'HR_KI_CONTEXTS.VIEW_NAME'
130: )then
131: hr_utility.set_location(' Leaving:'||l_proc, 40);
132: raise;
133: end if;
134: hr_utility.set_location(' Leaving:'||l_proc,50);
135: End chk_view_name;

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

130: )then
131: hr_utility.set_location(' Leaving:'||l_proc, 40);
132: raise;
133: end if;
134: hr_utility.set_location(' Leaving:'||l_proc,50);
135: End chk_view_name;
136:
137: --
138: -- ----------------------------------------------------------------------------

Line 148: hr_utility.set_location('Entering:'||l_proc, 5);

144: --
145: l_proc varchar2(72) := g_package||'insert_validate';
146: --
147: Begin
148: hr_utility.set_location('Entering:'||l_proc, 5);
149: --
150: -- Call all supporting business operations
151: --
152: --

Line 161: hr_utility.set_location(' Leaving:'||l_proc, 10);

157: --
158: --
159: chk_view_name(p_view_name => p_rec.view_name);
160: --
161: hr_utility.set_location(' Leaving:'||l_proc, 10);
162: End insert_validate;
163: --
164: -- ----------------------------------------------------------------------------
165: -- |---------------------------< update_validate >----------------------------|

Line 174: hr_utility.set_location('Entering:'||l_proc, 5);

170: --
171: l_proc varchar2(72) := g_package||'update_validate';
172: --
173: Begin
174: hr_utility.set_location('Entering:'||l_proc, 5);
175: --
176: -- Call all supporting business operations
177: --
178: --

Line 191: hr_utility.set_location(' Leaving:'||l_proc, 10);

187:
188: chk_view_name(p_view_name => p_rec.view_name);
189: --
190: --
191: hr_utility.set_location(' Leaving:'||l_proc, 10);
192: End update_validate;
193: --
194: -- ----------------------------------------------------------------------------
195: -- |---------------------------< delete_validate >----------------------------|

Line 204: hr_utility.set_location('Entering:'||l_proc, 5);

200: --
201: l_proc varchar2(72) := g_package||'delete_validate';
202: --
203: Begin
204: hr_utility.set_location('Entering:'||l_proc, 5);
205: --
206: -- Call all supporting business operations
207: --
208: hr_utility.set_location(' Leaving:'||l_proc, 10);

Line 208: hr_utility.set_location(' Leaving:'||l_proc, 10);

204: hr_utility.set_location('Entering:'||l_proc, 5);
205: --
206: -- Call all supporting business operations
207: --
208: hr_utility.set_location(' Leaving:'||l_proc, 10);
209: End delete_validate;
210: --
211: end hr_ctx_bus;