DBA Data[Home] [Help]

APPS.PQH_CGN_BUS dependencies on HR_API

Line 45: hr_api.mandatory_arg_error

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

Line 71: hr_api.set_security_group_id

67: close csr_sec_grp;
68: --
69: -- Set the security_group_id in CLIENT_INFO
70: --
71: hr_api.set_security_group_id
72: (p_security_group_id => l_security_group_id
73: );
74: end if;
75: --

Line 109: hr_api.mandatory_arg_error

105: hr_utility.set_location('Entering:'|| l_proc, 10);
106: --
107: -- Ensure that all the mandatory parameter are not null
108: --
109: hr_api.mandatory_arg_error
110: (p_api_name => l_proc
111: ,p_argument => 'case_group_id'
112: ,p_argument_value => p_case_group_id
113: );

Line 115: if ( nvl(pqh_cgn_bus.g_case_group_id, hr_api.g_number)

111: ,p_argument => 'case_group_id'
112: ,p_argument_value => p_case_group_id
113: );
114: --
115: if ( nvl(pqh_cgn_bus.g_case_group_id, hr_api.g_number)
116: = p_case_group_id) then
117: --
118: -- The legislation code has already been found with a previous
119: -- call to this function. Just return the value in the global

Line 207: IF nvl(p_rec.CASE_GROUP_NUMBER, hr_api.g_varchar2) <>

203: -- not been updated.
204:
205:
206:
207: IF nvl(p_rec.CASE_GROUP_NUMBER, hr_api.g_varchar2) <>
208: nvl(pqh_cgn_shd.g_old_rec.CASE_GROUP_NUMBER, hr_api.g_varchar2) THEN
209: hr_utility.set_message(8302, 'PQH_DE_CSGRP_NUMBER');
210: fnd_message.raise_error;
211: END IF;

Line 208: nvl(pqh_cgn_shd.g_old_rec.CASE_GROUP_NUMBER, hr_api.g_varchar2) THEN

204:
205:
206:
207: IF nvl(p_rec.CASE_GROUP_NUMBER, hr_api.g_varchar2) <>
208: nvl(pqh_cgn_shd.g_old_rec.CASE_GROUP_NUMBER, hr_api.g_varchar2) THEN
209: hr_utility.set_message(8302, 'PQH_DE_CSGRP_NUMBER');
210: fnd_message.raise_error;
211: END IF;
212:

Line 337: -- EDIT_HERE: The following call to hr_api.validate_bus_grp_id

333: hr_utility.set_location('Entering:'||l_proc, 5);
334: --
335: -- Call all supporting business operations
336: --
337: -- EDIT_HERE: The following call to hr_api.validate_bus_grp_id
338: -- will only be valid when the business_group_id is not null.
339: -- As this column is defined as optional on the table then
340: -- different logic will be required to handle the null case.
341: -- If this is a start-up data entity then:

Line 354: hr_api.validate_bus_grp_id

350: -- Remove this comment when the edit has been completed.
351: -- Validate Important Attributes
352:
353: If p_rec.business_group_id is not null then
354: hr_api.validate_bus_grp_id
355: (p_business_group_id => p_rec.business_group_id
356: ,p_associated_column1 => pqh_cgn_shd.g_tab_nam
357: || '.BUSINESS_GROUP_ID');
358: end if;

Line 391: -- EDIT_HERE: The following call to hr_api.validate_bus_grp_id

387: hr_utility.set_location('Entering:'||l_proc, 5);
388: --
389: -- Call all supporting business operations
390: --
391: -- EDIT_HERE: The following call to hr_api.validate_bus_grp_id
392: -- will only be valid when the business_group_id is not null.
393: -- As this column is defined as optional on the table then
394: -- different logic will be required to handle the null case.
395: -- If this is a start-up data entity then:

Line 407: hr_api.validate_bus_grp_id

403: -- value is set in client_info.
404: -- Remove this comment when the edit has been completed.
405: -- Validate Important Attributes
406: If p_rec.business_group_id is not null then
407: hr_api.validate_bus_grp_id
408: (p_business_group_id => p_rec.business_group_id
409: ,p_associated_column1 => pqh_cgn_shd.g_tab_nam
410: || '.BUSINESS_GROUP_ID');
411: end if;