DBA Data[Home] [Help]

APPS.PQH_CRF_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 => 'criteria_rate_factor_id'
50: ,p_argument_value => p_criteria_rate_factor_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 => 'criteria_rate_factor_id'
119: ,p_argument_value => p_criteria_rate_factor_id
120: );

Line 122: if ( nvl(pqh_crf_bus.g_criteria_rate_factor_id, hr_api.g_number)

118: ,p_argument => 'criteria_rate_factor_id'
119: ,p_argument_value => p_criteria_rate_factor_id
120: );
121: --
122: if ( nvl(pqh_crf_bus.g_criteria_rate_factor_id, hr_api.g_number)
123: = p_criteria_rate_factor_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 212: if nvl(p_rec.business_group_id, hr_api.g_number) <>

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

Line 214: ,hr_api.g_number

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

Line 216: hr_api.argument_changed_error

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

Line 316: and nvl(p_criteria_rate_defn_id,hr_api.g_number)

312: (p_criteria_rate_factor_id => p_criteria_rate_factor_id,
313: p_object_version_number => p_object_version_number);
314: --
315: if (l_api_updating
316: and nvl(p_criteria_rate_defn_id,hr_api.g_number)
317: <> nvl(pqh_crf_shd.g_old_rec.criteria_rate_defn_id,hr_api.g_number)
318: or not l_api_updating) then
319: --
320: -- check if criteria_rate_defn_id value exists in

Line 317: <> nvl(pqh_crf_shd.g_old_rec.criteria_rate_defn_id,hr_api.g_number)

313: p_object_version_number => p_object_version_number);
314: --
315: if (l_api_updating
316: and nvl(p_criteria_rate_defn_id,hr_api.g_number)
317: <> nvl(pqh_crf_shd.g_old_rec.criteria_rate_defn_id,hr_api.g_number)
318: or not l_api_updating) then
319: --
320: -- check if criteria_rate_defn_id value exists in
321: -- PQH_CRITERIA_RATE_DEFN table

Line 400: and nvl(p_parent_rate_matrix_id,hr_api.g_number)

396: (p_criteria_rate_factor_id => p_criteria_rate_factor_id,
397: p_object_version_number => p_object_version_number);
398: --
399: if (l_api_updating
400: and nvl(p_parent_rate_matrix_id,hr_api.g_number)
401: <> nvl(pqh_crf_shd.g_old_rec.parent_rate_matrix_id,hr_api.g_number)
402: or not l_api_updating) then
403: --
404: -- check if PL_ID value exists in

Line 401: <> nvl(pqh_crf_shd.g_old_rec.parent_rate_matrix_id,hr_api.g_number)

397: p_object_version_number => p_object_version_number);
398: --
399: if (l_api_updating
400: and nvl(p_parent_rate_matrix_id,hr_api.g_number)
401: <> nvl(pqh_crf_shd.g_old_rec.parent_rate_matrix_id,hr_api.g_number)
402: or not l_api_updating) then
403: --
404: -- check if PL_ID value exists in
405: -- BEN_PL_F table

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

481: (p_criteria_rate_factor_id => p_criteria_rate_factor_id,
482: p_object_version_number => p_object_version_number);
483: --
484: if (l_api_updating
485: and nvl(p_business_group_id,hr_api.g_number)
486: <> nvl(pqh_crf_shd.g_old_rec.business_group_id,hr_api.g_number)
487: or not l_api_updating) then
488: --
489: -- check if business_group_id value exists in

Line 486: <> nvl(pqh_crf_shd.g_old_rec.business_group_id,hr_api.g_number)

482: p_object_version_number => p_object_version_number);
483: --
484: if (l_api_updating
485: and nvl(p_business_group_id,hr_api.g_number)
486: <> nvl(pqh_crf_shd.g_old_rec.business_group_id,hr_api.g_number)
487: or not l_api_updating) then
488: --
489: -- check if business_group_id value exists in
490: -- HR_ALL_ORGANIZATION_UNITS table

Line 562: hr_api.validate_bus_grp_id

558: NOT IN ('GENERIC','STARTUP') THEN
559: --
560: -- Validate Important Attributes
561: --
562: hr_api.validate_bus_grp_id
563: (p_business_group_id => p_rec.business_group_id
564: ,p_associated_column1 => pqh_crf_shd.g_tab_nam
565: || '.BUSINESS_GROUP_ID');
566: --

Line 637: hr_api.validate_bus_grp_id

633: NOT IN ('GENERIC','STARTUP') THEN
634: --
635: -- Validate Important Attributes
636: --
637: hr_api.validate_bus_grp_id
638: (p_business_group_id => p_rec.business_group_id
639: ,p_associated_column1 => pqh_crf_shd.g_tab_nam
640: || '.BUSINESS_GROUP_ID');
641: --