DBA Data[Home] [Help]

APPS.PAY_PPR_BUS dependencies on PAY_PPR_SHD

Line 189: ,p_rec in pay_ppr_shd.g_rec_type

185: -- {End Of Comments}
186: -- ----------------------------------------------------------------------------
187: Procedure chk_non_updateable_args
188: (p_effective_date in date
189: ,p_rec in pay_ppr_shd.g_rec_type
190: ) IS
191: --
192: l_proc varchar2(72) := g_package || 'chk_non_updateable_args';
193: l_argument varchar2(80);

Line 202: IF NOT pay_ppr_shd.api_updating

198: --
199: -- Only proceed with the validation if a row exists for the current
200: -- record in the HR Schema.
201: --
202: IF NOT pay_ppr_shd.api_updating
203: (p_status_processing_rule_id => p_rec.status_processing_rule_id
204: ,p_effective_date => p_effective_date
205: ,p_object_version_number => p_rec.object_version_number
206: ) THEN

Line 218: nvl(pay_ppr_shd.g_old_rec.business_group_id,hr_api.g_number) then

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

Line 228: nvl(pay_ppr_shd.g_old_rec.legislation_code,hr_api.g_varchar2) then

224: --
225: hr_utility.set_location('Entering:'||l_proc, 15);
226: --
227: If nvl(p_rec.legislation_code,hr_api.g_varchar2) <>
228: nvl(pay_ppr_shd.g_old_rec.legislation_code,hr_api.g_varchar2) then
229: --
230: l_argument := 'legislation_code';
231: raise l_error;
232: --

Line 238: nvl(pay_ppr_shd.g_old_rec.status_processing_rule_id,hr_api.g_number) then

234: --
235: hr_utility.set_location('Entering:'||l_proc, 20);
236: --
237: If nvl(p_rec.status_processing_rule_id,hr_api.g_number) <>
238: nvl(pay_ppr_shd.g_old_rec.status_processing_rule_id,hr_api.g_number) then
239: --
240: l_argument := 'status_processing_rule_id';
241: raise l_error;
242: --

Line 248: nvl(pay_ppr_shd.g_old_rec.assignment_status_type_id,hr_api.g_number) then

244: --
245: hr_utility.set_location('Entering:'||l_proc, 25);
246: --
247: If nvl(p_rec.assignment_status_type_id,hr_api.g_number) <>
248: nvl(pay_ppr_shd.g_old_rec.assignment_status_type_id,hr_api.g_number) then
249: --
250: l_argument := 'assignment_status_type_id';
251: raise l_error;
252: --

Line 258: nvl(pay_ppr_shd.g_old_rec.element_type_id,hr_api.g_number) then

254: --
255: hr_utility.set_location('Entering:'||l_proc, 30);
256: --
257: If nvl(p_rec.element_type_id,hr_api.g_number) <>
258: nvl(pay_ppr_shd.g_old_rec.element_type_id,hr_api.g_number) then
259: --
260: l_argument := 'element_type_id';
261: raise l_error;
262: --

Line 268: nvl(pay_ppr_shd.g_old_rec.legislation_subgroup,hr_api.g_varchar2) then

264: --
265: hr_utility.set_location('Entering:'||l_proc, 35);
266: --
267: If nvl(p_rec.legislation_subgroup,hr_api.g_varchar2) <>
268: nvl(pay_ppr_shd.g_old_rec.legislation_subgroup,hr_api.g_varchar2) then
269: --
270: l_argument := 'legislation_subgroup';
271: raise l_error;
272: --

Line 503: pay_ppr_shd.constraint_error('PAY_STATUS_PROCESSING_RULE_FK2');

499: Fetch c_chk_assign_status_type into l_exists;
500: If c_chk_assign_status_type%notfound Then
501: --
502: Close c_chk_assign_status_type;
503: pay_ppr_shd.constraint_error('PAY_STATUS_PROCESSING_RULE_FK2');
504: fnd_message.raise_error;
505: --
506: End If;
507: Close c_chk_assign_status_type;

Line 623: if (p_formula_id <> nvl(pay_ppr_shd.g_old_rec.formula_id,p_formula_id)) and

619: -- check if formula is updated
620: -- formula can not be updated if result rule exist with in
621: -- date range specified for Status Processing Rule
622: --
623: if (p_formula_id <> nvl(pay_ppr_shd.g_old_rec.formula_id,p_formula_id)) and
624: (pay_status_rules_pkg.result_rules_exist(p_status_processing_rule_id,
625: p_start_date, p_end_date)) then
626: fnd_message.set_name('PAY','HR_7135_SPR_FORMULA_NO_UPDATE');
627: fnd_message.raise_error;

Line 913: (p_rec in pay_ppr_shd.g_rec_type

909: -- ----------------------------------------------------------------------------
910: -- |---------------------------< insert_validate >----------------------------|
911: -- ----------------------------------------------------------------------------
912: Procedure insert_validate
913: (p_rec in pay_ppr_shd.g_rec_type
914: ,p_effective_date in date
915: ,p_datetrack_mode in varchar2
916: ,p_validation_start_date in date
917: ,p_validation_end_date in date

Line 945: ,p_associated_column1 => pay_ppr_shd.g_tab_nam

941: -- Validate Important Attributes
942: --
943: hr_api.validate_bus_grp_id
944: (p_business_group_id => p_rec.business_group_id
945: ,p_associated_column1 => pay_ppr_shd.g_tab_nam
946: || '.BUSINESS_GROUP_ID');
947: --
948: -- after validating the set of important attributes,
949: -- if Multiple Message Detection is enabled and at least

Line 1020: (p_rec in pay_ppr_shd.g_rec_type

1016: -- ----------------------------------------------------------------------------
1017: -- |---------------------------< update_validate >----------------------------|
1018: -- ----------------------------------------------------------------------------
1019: Procedure update_validate
1020: (p_rec in pay_ppr_shd.g_rec_type
1021: ,p_effective_date in date
1022: ,p_datetrack_mode in varchar2
1023: ,p_validation_start_date in date
1024: ,p_validation_end_date in date

Line 1050: ,p_associated_column1 => pay_ppr_shd.g_tab_nam

1046: -- Validate Important Attributes
1047: --
1048: hr_api.validate_bus_grp_id
1049: (p_business_group_id => p_rec.business_group_id
1050: ,p_associated_column1 => pay_ppr_shd.g_tab_nam
1051: || '.BUSINESS_GROUP_ID');
1052: --
1053: -- After validating the set of important attributes,
1054: -- if Multiple Message Detection is enabled and at least

Line 1101: (p_rec in pay_ppr_shd.g_rec_type

1097: -- ----------------------------------------------------------------------------
1098: -- |---------------------------< delete_validate >----------------------------|
1099: -- ----------------------------------------------------------------------------
1100: Procedure delete_validate
1101: (p_rec in pay_ppr_shd.g_rec_type
1102: ,p_effective_date in date
1103: ,p_datetrack_mode in varchar2
1104: ,p_validation_start_date in date
1105: ,p_validation_end_date in date

Line 1115: ,pay_ppr_shd.g_old_rec.business_group_id

1111: hr_utility.set_location('Entering:'||l_proc, 5);
1112: --
1113: --
1114: chk_startup_action(false
1115: ,pay_ppr_shd.g_old_rec.business_group_id
1116: ,pay_ppr_shd.g_old_rec.legislation_code
1117: );
1118: IF hr_startup_data_api_support.g_startup_mode
1119: NOT IN ('GENERIC','STARTUP') THEN

Line 1116: ,pay_ppr_shd.g_old_rec.legislation_code

1112: --
1113: --
1114: chk_startup_action(false
1115: ,pay_ppr_shd.g_old_rec.business_group_id
1116: ,pay_ppr_shd.g_old_rec.legislation_code
1117: );
1118: IF hr_startup_data_api_support.g_startup_mode
1119: NOT IN ('GENERIC','STARTUP') THEN
1120: --