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 1298: (p_rec in pay_frr_shd.g_rec_type

1294: -- ----------------------------------------------------------------------------
1295: -- |---------------------------< insert_validate >----------------------------|
1296: -- ----------------------------------------------------------------------------
1297: Procedure insert_validate
1298: (p_rec in pay_frr_shd.g_rec_type
1299: ,p_effective_date in date
1300: ,p_datetrack_mode in varchar2
1301: ,p_validation_start_date in date
1302: ,p_validation_end_date in date

Line 1324: ,p_associated_column1 => pay_frr_shd.g_tab_nam

1320: -- Validate Important Attributes
1321: --
1322: hr_api.validate_bus_grp_id
1323: (p_business_group_id => p_rec.business_group_id
1324: ,p_associated_column1 => pay_frr_shd.g_tab_nam
1325: || '.BUSINESS_GROUP_ID');
1326: --
1327: -- after validating the set of important attributes,
1328: -- if Multiple Message Detection is enabled and at least

Line 1408: (p_rec in pay_frr_shd.g_rec_type

1404: -- ----------------------------------------------------------------------------
1405: -- |---------------------------< update_validate >----------------------------|
1406: -- ----------------------------------------------------------------------------
1407: Procedure update_validate
1408: (p_rec in pay_frr_shd.g_rec_type
1409: ,p_effective_date in date
1410: ,p_datetrack_mode in varchar2
1411: ,p_validation_start_date in date
1412: ,p_validation_end_date in date

Line 1434: ,p_associated_column1 => pay_frr_shd.g_tab_nam

1430: -- Validate Important Attributes
1431: --
1432: hr_api.validate_bus_grp_id
1433: (p_business_group_id => p_rec.business_group_id
1434: ,p_associated_column1 => pay_frr_shd.g_tab_nam
1435: || '.BUSINESS_GROUP_ID');
1436: --
1437: -- After validating the set of important attributes,
1438: -- if Multiple Message Detection is enabled and at least

Line 1512: (p_rec in pay_frr_shd.g_rec_type

1508: -- ----------------------------------------------------------------------------
1509: -- |---------------------------< delete_validate >----------------------------|
1510: -- ----------------------------------------------------------------------------
1511: Procedure delete_validate
1512: (p_rec in pay_frr_shd.g_rec_type
1513: ,p_effective_date in date
1514: ,p_datetrack_mode in varchar2
1515: ,p_validation_start_date in date
1516: ,p_validation_end_date in date

Line 1526: ,pay_frr_shd.g_old_rec.business_group_id

1522: hr_utility.set_location('Entering:'||l_proc, 5);
1523: --
1524: --
1525: chk_startup_action(false
1526: ,pay_frr_shd.g_old_rec.business_group_id
1527: ,pay_frr_shd.g_old_rec.legislation_code
1528: );
1529: IF hr_startup_data_api_support.g_startup_mode
1530: NOT IN ('GENERIC','STARTUP') THEN

Line 1527: ,pay_frr_shd.g_old_rec.legislation_code

1523: --
1524: --
1525: chk_startup_action(false
1526: ,pay_frr_shd.g_old_rec.business_group_id
1527: ,pay_frr_shd.g_old_rec.legislation_code
1528: );
1529: IF hr_startup_data_api_support.g_startup_mode
1530: NOT IN ('GENERIC','STARTUP') THEN
1531: --