DBA Data[Home] [Help]

APPS.PQH_ETM_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 => 'ent_minutes_id'
48: ,p_argument_value => p_ent_minutes_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 => 'ent_minutes_id'
112: ,p_argument_value => p_ent_minutes_id
113: );

Line 115: if ( nvl(pqh_etm_bus.g_ent_minutes_id, hr_api.g_number)

111: ,p_argument => 'ent_minutes_id'
112: ,p_argument_value => p_ent_minutes_id
113: );
114: --
115: if ( nvl(pqh_etm_bus.g_ent_minutes_id, hr_api.g_number)
116: = p_ent_minutes_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 202: IF nvl(p_rec.ENT_MINUTES_CD, hr_api.g_varchar2) <>

198: fnd_message.set_token('STEP ', '5');
199: fnd_message.raise_error;
200: END IF;
201:
202: IF nvl(p_rec.ENT_MINUTES_CD, hr_api.g_varchar2) <>
203: nvl(pqh_etm_shd.g_old_rec.ENT_MINUTES_CD, hr_api.g_varchar2) THEN
204: hr_utility.set_message(8302, 'DE_PQH_NONUPD_ENT_CD');
205: fnd_message.raise_error;
206: END IF;

Line 203: nvl(pqh_etm_shd.g_old_rec.ENT_MINUTES_CD, hr_api.g_varchar2) THEN

199: fnd_message.raise_error;
200: END IF;
201:
202: IF nvl(p_rec.ENT_MINUTES_CD, hr_api.g_varchar2) <>
203: nvl(pqh_etm_shd.g_old_rec.ENT_MINUTES_CD, hr_api.g_varchar2) THEN
204: hr_utility.set_message(8302, 'DE_PQH_NONUPD_ENT_CD');
205: fnd_message.raise_error;
206: END IF;
207:

Line 208: IF nvl(p_rec.TARIFF_GROUP_CD, hr_api.g_varchar2) <>

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

Line 209: nvl(pqh_etm_shd.g_old_rec.TARIFF_GROUP_CD, hr_api.g_varchar2) THEN

205: fnd_message.raise_error;
206: END IF;
207:
208: IF nvl(p_rec.TARIFF_GROUP_CD, hr_api.g_varchar2) <>
209: nvl(pqh_etm_shd.g_old_rec.TARIFF_GROUP_CD, hr_api.g_varchar2) THEN
210: hr_utility.set_message(8302, 'DE_PQH_NONUPD_TARIFF_CD');
211: fnd_message.raise_error;
212: END IF;
213:

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

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

Line 361: hr_api.validate_bus_grp_id

357: -- Remove this comment when the edit has been completed.
358: -- Validate Important Attributes
359:
360: If p_rec.business_group_id is not null then
361: hr_api.validate_bus_grp_id
362: (p_business_group_id => p_rec.business_group_id
363: ,p_associated_column1 => pqh_etm_shd.g_tab_nam
364: || '.BUSINESS_GROUP_ID');
365: end if;

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

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

Line 414: hr_api.validate_bus_grp_id

410: -- value is set in client_info.
411: -- Remove this comment when the edit has been completed.
412: -- Validate Important Attributes
413: If p_rec.business_group_id is not null then
414: hr_api.validate_bus_grp_id
415: (p_business_group_id => p_rec.business_group_id
416: ,p_associated_column1 => pqh_etm_shd.g_tab_nam
417: || '.BUSINESS_GROUP_ID');
418: end if;