DBA Data[Home] [Help]

APPS.PAY_AUD_BUS dependencies on HR_API

Line 44: hr_api.mandatory_arg_error

40: hr_utility.set_location('Entering:'|| l_proc, 1);
41: --
42: -- Check mandatory parameters have been set
43: --
44: hr_api.mandatory_arg_error
45: (p_api_name => l_proc
46: ,p_argument => 'person_id'
47: ,p_argument_value => p_person_id
48: );

Line 116: hr_api.mandatory_arg_error

112: --
113: hr_utility.set_location('Entering:'||l_proc,5);
114: --
115: --
116: hr_api.mandatory_arg_error
117: (p_api_name => l_proc
118: ,p_argument => 'effective_date'
119: ,p_argument_value => p_effective_date
120: );

Line 176: hr_api.mandatory_arg_error

172: hr_utility.set_location('Entering:'|| l_proc, 1);
173: --
174: -- Check mandatory parameters have been set
175: --
176: hr_api.mandatory_arg_error
177: (p_api_name => l_proc
178: ,p_argument => 'p_effective_date'
179: ,p_argument_value => p_effective_date
180: );

Line 186: if hr_api.not_exists_in_hr_lookups

182: hr_utility.set_location(l_proc, 2);
183: --
184: -- make sure that the source type is valid
185: if p_source_type is not null then
186: if hr_api.not_exists_in_hr_lookups
187: (p_effective_date => p_effective_date
188: ,p_lookup_type => 'PAY_TRANSACTION_SOURCE_TYPE'
189: ,p_lookup_code => p_source_type
190: ) then

Line 222: hr_api.mandatory_arg_error

218: hr_utility.set_location('Entering:'|| l_proc, 1);
219: --
220: -- Check mandatory parameters have been set
221: --
222: hr_api.mandatory_arg_error
223: (p_api_name => l_proc
224: ,p_argument => 'p_effective_date'
225: ,p_argument_value => p_effective_date
226: );

Line 228: hr_api.mandatory_arg_error

224: ,p_argument => 'p_effective_date'
225: ,p_argument_value => p_effective_date
226: );
227: --
228: hr_api.mandatory_arg_error
229: (p_api_name => l_proc
230: ,p_argument => 'p_transaction_type'
231: ,p_argument_value => p_transaction_type
232: );

Line 236: if hr_api.not_exists_in_hr_lookups

232: );
233: hr_utility.set_location(l_proc, 2);
234: --
235: -- make sure that the transaction type is valid
236: if hr_api.not_exists_in_hr_lookups
237: (p_effective_date => p_effective_date
238: ,p_lookup_type => 'PAY_TRANSACTION_TYPE'
239: ,p_lookup_code => p_transaction_type
240: ) then

Line 247: hr_api.not_exists_in_hr_lookups

243: end if;
244:
245: -- make sure that if a subtype is specified, it is valid
246: if p_transaction_subtype is not null and
247: hr_api.not_exists_in_hr_lookups
248: (p_effective_date => p_effective_date
249: ,p_lookup_type => p_transaction_type
250: ,p_lookup_code => p_transaction_subtype
251: ) then

Line 287: hr_api.mandatory_arg_error

283: hr_utility.set_location('Entering:'|| l_proc, 10);
284: --
285: -- Ensure that all the mandatory parameter are not null
286: --
287: hr_api.mandatory_arg_error
288: (p_api_name => l_proc
289: ,p_argument => 'stat_trans_audit_id'
290: ,p_argument_value => p_stat_trans_audit_id
291: );

Line 293: if ( nvl(pay_aud_bus.g_stat_trans_audit_id, hr_api.g_number)

289: ,p_argument => 'stat_trans_audit_id'
290: ,p_argument_value => p_stat_trans_audit_id
291: );
292: --
293: if ( nvl(pay_aud_bus.g_stat_trans_audit_id, hr_api.g_number)
294: = p_stat_trans_audit_id) then
295: --
296: -- The legislation code has already been found with a previous
297: -- call to this function. Just return the value in the global

Line 451: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

447: hr_utility.set_location('Entering:'||l_proc, 5);
448: --
449: -- Call all supporting business operations
450: --
451: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
452: -- Check the transaction type
453: chk_transaction_type(p_transaction_type => p_rec.transaction_type
454: ,p_transaction_subtype => p_rec.transaction_subtype
455: ,p_effective_date => p_rec.transaction_effective_date