DBA Data[Home] [Help]

APPS.PQH_RFE_BUS dependencies on HR_API

Line 47: hr_api.mandatory_arg_error

43: hr_utility.set_location('Entering:'|| l_proc, 10);
44: --
45: -- Ensure that all the mandatory parameter are not null
46: --
47: hr_api.mandatory_arg_error
48: (p_api_name => l_proc
49: ,p_argument => 'rate_factor_on_elmnt_id'
50: ,p_argument_value => p_rate_factor_on_elmnt_id
51: );

Line 74: hr_api.set_security_group_id

70: close csr_sec_grp;
71: --
72: -- Set the security_group_id in CLIENT_INFO
73: --
74: hr_api.set_security_group_id
75: (p_security_group_id => l_security_group_id
76: );
77: --
78: -- Set the sessions legislation context in HR_SESSION_DATA

Line 80: hr_api.set_legislation_context(l_legislation_code);

76: );
77: --
78: -- Set the sessions legislation context in HR_SESSION_DATA
79: --
80: hr_api.set_legislation_context(l_legislation_code);
81: end if;
82: --
83: hr_utility.set_location(' Leaving:'|| l_proc, 20);
84: --

Line 116: hr_api.mandatory_arg_error

112: hr_utility.set_location('Entering:'|| l_proc, 10);
113: --
114: -- Ensure that all the mandatory parameter are not null
115: --
116: hr_api.mandatory_arg_error
117: (p_api_name => l_proc
118: ,p_argument => 'rate_factor_on_elmnt_id'
119: ,p_argument_value => p_rate_factor_on_elmnt_id
120: );

Line 122: if ( nvl(pqh_rfe_bus.g_rate_factor_on_elmnt_id, hr_api.g_number)

118: ,p_argument => 'rate_factor_on_elmnt_id'
119: ,p_argument_value => p_rate_factor_on_elmnt_id
120: );
121: --
122: if ( nvl(pqh_rfe_bus.g_rate_factor_on_elmnt_id, hr_api.g_number)
123: = p_rate_factor_on_elmnt_id) then
124: --
125: -- The legislation code has already been found with a previous
126: -- call to this function. Just return the value in the global

Line 213: if nvl(p_rec.business_group_id, hr_api.g_number) <>

209: -- EDIT_HERE: Add checks to ensure non-updateable args have
210: -- not been updated.
211: --
212: --
213: if nvl(p_rec.business_group_id, hr_api.g_number) <>
214: nvl(pqh_rfe_shd.g_old_rec.business_group_id
215: ,hr_api.g_number
216: ) then
217: hr_api.argument_changed_error

Line 215: ,hr_api.g_number

211: --
212: --
213: if nvl(p_rec.business_group_id, hr_api.g_number) <>
214: nvl(pqh_rfe_shd.g_old_rec.business_group_id
215: ,hr_api.g_number
216: ) then
217: hr_api.argument_changed_error
218: (p_api_name => l_proc
219: ,p_argument => 'BUSINESS_GROUP_ID'

Line 217: hr_api.argument_changed_error

213: if nvl(p_rec.business_group_id, hr_api.g_number) <>
214: nvl(pqh_rfe_shd.g_old_rec.business_group_id
215: ,hr_api.g_number
216: ) then
217: hr_api.argument_changed_error
218: (p_api_name => l_proc
219: ,p_argument => 'BUSINESS_GROUP_ID'
220: ,p_base_table => pqh_rfe_shd.g_tab_nam
221: );

Line 293: <> nvl(pqh_rfe_shd.g_old_rec.rate_factor_val_record_tbl,hr_api.g_varchar2)

289: p_object_version_number => p_object_version_number);
290: --
291: if (l_api_updating
292: and p_rate_factor_val_record_tbl
293: <> nvl(pqh_rfe_shd.g_old_rec.rate_factor_val_record_tbl,hr_api.g_varchar2)
294: or not l_api_updating)
295: and p_rate_factor_val_record_tbl is not null then
296: --
297: -- check if value of lookup falls within lookup type.

Line 299: if hr_api.not_exists_in_hr_lookups

295: and p_rate_factor_val_record_tbl is not null then
296: --
297: -- check if value of lookup falls within lookup type.
298: --
299: if hr_api.not_exists_in_hr_lookups
300: (p_lookup_type => 'PQH_RBC_RT_FACTOR_ELMNT_TBL',
301: p_lookup_code => p_rate_factor_val_record_tbl,
302: p_effective_date => p_effective_date) then
303: --

Line 366: and nvl(p_criteria_rate_element_id,hr_api.g_number)

362: (p_rate_factor_on_elmnt_id => p_rate_factor_on_elmnt_id,
363: p_object_version_number => p_object_version_number);
364: --
365: if (l_api_updating
366: and nvl(p_criteria_rate_element_id,hr_api.g_number)
367: <> nvl(pqh_rfe_shd.g_old_rec.criteria_rate_element_id,hr_api.g_number)
368: or not l_api_updating) then
369: --
370: -- check if criteria_rate_element_id value exists in

Line 367: <> nvl(pqh_rfe_shd.g_old_rec.criteria_rate_element_id,hr_api.g_number)

363: p_object_version_number => p_object_version_number);
364: --
365: if (l_api_updating
366: and nvl(p_criteria_rate_element_id,hr_api.g_number)
367: <> nvl(pqh_rfe_shd.g_old_rec.criteria_rate_element_id,hr_api.g_number)
368: or not l_api_updating) then
369: --
370: -- check if criteria_rate_element_id value exists in
371: -- pqh_criteria_rate_elements table

Line 449: and nvl(p_criteria_rate_factor_id,hr_api.g_number)

445: (p_rate_factor_on_elmnt_id => p_rate_factor_on_elmnt_id,
446: p_object_version_number => p_object_version_number);
447: --
448: if (l_api_updating
449: and nvl(p_criteria_rate_factor_id,hr_api.g_number)
450: <> nvl(pqh_rfe_shd.g_old_rec.criteria_rate_factor_id,hr_api.g_number)
451: or not l_api_updating) then
452: --
453: -- check if criteria_rate_factor_id value exists in

Line 450: <> nvl(pqh_rfe_shd.g_old_rec.criteria_rate_factor_id,hr_api.g_number)

446: p_object_version_number => p_object_version_number);
447: --
448: if (l_api_updating
449: and nvl(p_criteria_rate_factor_id,hr_api.g_number)
450: <> nvl(pqh_rfe_shd.g_old_rec.criteria_rate_factor_id,hr_api.g_number)
451: or not l_api_updating) then
452: --
453: -- check if criteria_rate_factor_id value exists in
454: -- pqh_criteria_rate_factors table

Line 552: <> nvl(pqh_rfe_shd.g_old_rec.rate_factor_val_record_col,hr_api.g_varchar2)

548: p_object_version_number => p_object_version_number);
549: --
550: if (l_api_updating
551: and p_rate_factor_val_record_col
552: <> nvl(pqh_rfe_shd.g_old_rec.rate_factor_val_record_col,hr_api.g_varchar2)
553: or not l_api_updating)
554: and p_rate_factor_val_record_col is not null then
555:
556:

Line 652: and nvl(p_business_group_id,hr_api.g_number)

648: (p_rate_factor_on_elmnt_id => p_rate_factor_on_elmnt_id,
649: p_object_version_number => p_object_version_number);
650: --
651: if (l_api_updating
652: and nvl(p_business_group_id,hr_api.g_number)
653: <> nvl(pqh_rfe_shd.g_old_rec.business_group_id,hr_api.g_number)
654: or not l_api_updating) then
655: --
656: -- check if business_group_id value exists in

Line 653: <> nvl(pqh_rfe_shd.g_old_rec.business_group_id,hr_api.g_number)

649: p_object_version_number => p_object_version_number);
650: --
651: if (l_api_updating
652: and nvl(p_business_group_id,hr_api.g_number)
653: <> nvl(pqh_rfe_shd.g_old_rec.business_group_id,hr_api.g_number)
654: or not l_api_updating) then
655: --
656: -- check if business_group_id value exists in
657: -- HR_ALL_ORGANIZATION_UNITS table

Line 712: hr_api.validate_bus_grp_id

708: NOT IN ('GENERIC','STARTUP') THEN
709: --
710: -- Validate Important Attributes
711: --
712: hr_api.validate_bus_grp_id
713: (p_business_group_id => p_rec.business_group_id
714: ,p_associated_column1 => pqh_rfe_shd.g_tab_nam
715: || '.BUSINESS_GROUP_ID');
716: --

Line 790: hr_api.validate_bus_grp_id

786: NOT IN ('GENERIC','STARTUP') THEN
787: --
788: -- Validate Important Attributes
789: --
790: hr_api.validate_bus_grp_id
791: (p_business_group_id => p_rec.business_group_id
792: ,p_associated_column1 => pqh_rfe_shd.g_tab_nam
793: || '.BUSINESS_GROUP_ID');
794: --