DBA Data[Home] [Help]

APPS.PAY_FRR_BUS dependencies on PAY_FRR_SHD

Line 193: ,p_rec in pay_frr_shd.g_rec_type

189: -- {End Of Comments}
190: -- ----------------------------------------------------------------------------
191: Procedure chk_non_updateable_args
192: (p_effective_date in date
193: ,p_rec in pay_frr_shd.g_rec_type
194: ) IS
195: --
196: l_proc varchar2(72) := g_package || 'chk_non_updateable_args';
197: l_error exception;

Line 205: IF NOT pay_frr_shd.api_updating

201: --
202: -- Only proceed with the validation if a row exists for the current
203: -- record in the HR Schema.
204: --
205: IF NOT pay_frr_shd.api_updating
206: (p_formula_result_rule_id => p_rec.formula_result_rule_id
207: ,p_effective_date => p_effective_date
208: ,p_object_version_number => p_rec.object_version_number
209: ) THEN

Line 219: nvl(pay_frr_shd.g_old_rec.business_group_id,hr_api.g_number) then

215: --
216: -- Ensure that the following attributes are not updated.
217: --
218: If nvl(p_rec.business_group_id,hr_api.g_number) <>
219: nvl(pay_frr_shd.g_old_rec.business_group_id,hr_api.g_number) then
220: --
221: l_argument := 'business_group_id';
222: raise l_error;
223: --

Line 227: nvl(pay_frr_shd.g_old_rec.legislation_code,hr_api.g_varchar2) then

223: --
224: End if;
225: --
226: If nvl(p_rec.legislation_code,hr_api.g_varchar2) <>
227: nvl(pay_frr_shd.g_old_rec.legislation_code,hr_api.g_varchar2) then
228: --
229: l_argument := 'legislation_code';
230: raise l_error;
231: --

Line 235: nvl(pay_frr_shd.g_old_rec.status_processing_rule_id,hr_api.g_number) then

231: --
232: End if;
233: --
234: If nvl(p_rec.status_processing_rule_id,hr_api.g_number) <>
235: nvl(pay_frr_shd.g_old_rec.status_processing_rule_id,hr_api.g_number) then
236: --
237: l_argument := 'status_processing_rule_id';
238: raise l_error;
239: --

Line 243: nvl(pay_frr_shd.g_old_rec.result_name,hr_api.g_varchar2) then

239: --
240: End if;
241: --
242: If nvl(p_rec.result_name,hr_api.g_varchar2) <>
243: nvl(pay_frr_shd.g_old_rec.result_name,hr_api.g_varchar2) then
244: --
245: l_argument := 'result_name';
246: raise l_error;
247: --

Line 251: nvl(pay_frr_shd.g_old_rec.legislation_subgroup,hr_api.g_varchar2) then

247: --
248: End if;
249: --
250: If nvl(p_rec.legislation_subgroup,hr_api.g_varchar2) <>
251: nvl(pay_frr_shd.g_old_rec.legislation_subgroup,hr_api.g_varchar2) then
252: --
253: l_argument := 'legislation_subgroup';
254: raise l_error;
255: --

Line 1317: (p_rec in pay_frr_shd.g_rec_type

1313: -- ----------------------------------------------------------------------------
1314: -- |---------------------------< insert_validate >----------------------------|
1315: -- ----------------------------------------------------------------------------
1316: Procedure insert_validate
1317: (p_rec in pay_frr_shd.g_rec_type
1318: ,p_effective_date in date
1319: ,p_datetrack_mode in varchar2
1320: ,p_validation_start_date in date
1321: ,p_validation_end_date in date

Line 1343: ,p_associated_column1 => pay_frr_shd.g_tab_nam

1339: -- Validate Important Attributes
1340: --
1341: hr_api.validate_bus_grp_id
1342: (p_business_group_id => p_rec.business_group_id
1343: ,p_associated_column1 => pay_frr_shd.g_tab_nam
1344: || '.BUSINESS_GROUP_ID');
1345: --
1346: -- after validating the set of important attributes,
1347: -- if Multiple Message Detection is enabled and at least

Line 1427: (p_rec in pay_frr_shd.g_rec_type

1423: -- ----------------------------------------------------------------------------
1424: -- |---------------------------< update_validate >----------------------------|
1425: -- ----------------------------------------------------------------------------
1426: Procedure update_validate
1427: (p_rec in pay_frr_shd.g_rec_type
1428: ,p_effective_date in date
1429: ,p_datetrack_mode in varchar2
1430: ,p_validation_start_date in date
1431: ,p_validation_end_date in date

Line 1453: ,p_associated_column1 => pay_frr_shd.g_tab_nam

1449: -- Validate Important Attributes
1450: --
1451: hr_api.validate_bus_grp_id
1452: (p_business_group_id => p_rec.business_group_id
1453: ,p_associated_column1 => pay_frr_shd.g_tab_nam
1454: || '.BUSINESS_GROUP_ID');
1455: --
1456: -- After validating the set of important attributes,
1457: -- if Multiple Message Detection is enabled and at least

Line 1531: (p_rec in pay_frr_shd.g_rec_type

1527: -- ----------------------------------------------------------------------------
1528: -- |---------------------------< delete_validate >----------------------------|
1529: -- ----------------------------------------------------------------------------
1530: Procedure delete_validate
1531: (p_rec in pay_frr_shd.g_rec_type
1532: ,p_effective_date in date
1533: ,p_datetrack_mode in varchar2
1534: ,p_validation_start_date in date
1535: ,p_validation_end_date in date

Line 1545: ,pay_frr_shd.g_old_rec.business_group_id

1541: hr_utility.set_location('Entering:'||l_proc, 5);
1542: --
1543: --
1544: chk_startup_action(false
1545: ,pay_frr_shd.g_old_rec.business_group_id
1546: ,pay_frr_shd.g_old_rec.legislation_code
1547: );
1548: IF hr_startup_data_api_support.g_startup_mode
1549: NOT IN ('GENERIC','STARTUP') THEN

Line 1546: ,pay_frr_shd.g_old_rec.legislation_code

1542: --
1543: --
1544: chk_startup_action(false
1545: ,pay_frr_shd.g_old_rec.business_group_id
1546: ,pay_frr_shd.g_old_rec.legislation_code
1547: );
1548: IF hr_startup_data_api_support.g_startup_mode
1549: NOT IN ('GENERIC','STARTUP') THEN
1550: --