DBA Data[Home] [Help]

APPS.BEN_BBP_BUS dependencies on HR_API

Line 51: and nvl(p_batch_parameter_id,hr_api.g_number)

47: (p_batch_parameter_id => p_batch_parameter_id,
48: p_object_version_number => p_object_version_number);
49: --
50: if (l_api_updating
51: and nvl(p_batch_parameter_id,hr_api.g_number)
52: <> ben_bbp_shd.g_old_rec.batch_parameter_id) then
53: --
54: -- raise error as PK has changed
55: --

Line 120: <> nvl(ben_bbp_shd.g_old_rec.batch_exe_cd,hr_api.g_varchar2)

116: p_object_version_number => p_object_version_number);
117: --
118: if (l_api_updating
119: and p_batch_exe_cd
120: <> nvl(ben_bbp_shd.g_old_rec.batch_exe_cd,hr_api.g_varchar2)
121: or not l_api_updating)
122: and p_batch_exe_cd is not null then
123: --
124: -- check if value of lookup falls within lookup type.

Line 126: if hr_api.not_exists_in_hr_lookups

122: and p_batch_exe_cd is not null then
123: --
124: -- check if value of lookup falls within lookup type.
125: --
126: if hr_api.not_exists_in_hr_lookups
127: (p_lookup_type => 'BEN_BATCH_EXE',
128: p_lookup_code => p_batch_exe_cd,
129: p_effective_date => p_effective_date) then
130: --

Line 191: <> nvl(ben_bbp_shd.g_old_rec.thread_cnt_num,hr_api.g_number)

187: p_object_version_number => p_object_version_number);
188: --
189: if (l_api_updating
190: and p_thread_cnt_num
191: <> nvl(ben_bbp_shd.g_old_rec.thread_cnt_num,hr_api.g_number)
192: or not l_api_updating)
193: and p_thread_cnt_num is not null then
194: --
195: -- check if thread count between 1 and 80.

Line 210: <> nvl(ben_bbp_shd.g_old_rec.max_err_num,hr_api.g_number)

206: end if;
207: --
208: if (l_api_updating
209: and p_max_err_num
210: <> nvl(ben_bbp_shd.g_old_rec.max_err_num,hr_api.g_number)
211: or not l_api_updating)
212: and p_max_err_num is not null then
213: --
214: -- check if thread count between 1 and 80.

Line 229: <> nvl(ben_bbp_shd.g_old_rec.chunk_size,hr_api.g_number)

225: end if;
226: --
227: if (l_api_updating
228: and p_chunk_size
229: <> nvl(ben_bbp_shd.g_old_rec.chunk_size,hr_api.g_number)
230: or not l_api_updating)
231: and p_chunk_size is not null then
232: --
233: -- check if thread count between 1 and 80.

Line 303: <> nvl(ben_bbp_shd.g_old_rec.batch_exe_cd,hr_api.g_varchar2)

299: p_object_version_number => p_object_version_number);
300: --
301: if (l_api_updating
302: and p_batch_exe_cd
303: <> nvl(ben_bbp_shd.g_old_rec.batch_exe_cd,hr_api.g_varchar2)
304: or not l_api_updating)
305: and p_batch_exe_cd is not null then
306: --
307: open c1;

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

336: --
337: -- Call all supporting business operations
338: --
339: --
340: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
341: --
342: chk_batch_parameter_id
343: (p_batch_parameter_id => p_rec.batch_parameter_id,
344: p_object_version_number => p_rec.object_version_number);

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

378: --
379: -- Call all supporting business operations
380: --
381: --
382: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
383: --
384: chk_batch_parameter_id
385: (p_batch_parameter_id => p_rec.batch_parameter_id,
386: p_object_version_number => p_rec.object_version_number);

Line 454: hr_api.mandatory_arg_error(p_api_name => l_proc,

450: hr_utility.set_location('Entering:'|| l_proc, 10);
451: --
452: -- Ensure that all the mandatory parameter are not null
453: --
454: hr_api.mandatory_arg_error(p_api_name => l_proc,
455: p_argument => 'batch_parameter_id',
456: p_argument_value => p_batch_parameter_id);
457: --
458: open csr_leg_code;