DBA Data[Home] [Help]

APPS.PQH_OPG_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 => 'operation_group_id'
48: ,p_argument_value => p_operation_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 => 'operation_group_id'
112: ,p_argument_value => p_operation_group_id
113: );

Line 115: if ( nvl(pqh_opg_bus.g_operation_group_id, hr_api.g_number)

111: ,p_argument => 'operation_group_id'
112: ,p_argument_value => p_operation_group_id
113: );
114: --
115: if ( nvl(pqh_opg_bus.g_operation_group_id, hr_api.g_number)
116: = p_operation_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 202: IF nvl(p_rec.operation_Group_CODE, 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.operation_Group_CODE, hr_api.g_varchar2) <>
203: nvl(pqh_opg_shd.g_old_rec.operation_Group_CODE, hr_api.g_varchar2) THEN
204: hr_utility.set_message(8302, 'PQH_DE_NONUPD_OPGRP_CODE');
205: fnd_message.raise_error;
206: END IF;

Line 203: nvl(pqh_opg_shd.g_old_rec.operation_Group_CODE, hr_api.g_varchar2) THEN

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

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

296: hr_utility.set_location('Entering:'||l_proc, 5);
297: --
298: -- Call all supporting business operations
299: --
300: -- EDIT_HERE: The following call to hr_api.validate_bus_grp_id
301: -- will only be valid when the business_group_id is not null.
302: -- As this column is defined as optional on the table then
303: -- different logic will be required to handle the null case.
304: -- If this is a start-up data entity then:

Line 318: hr_api.validate_bus_grp_id

314: -- Validate Important Attributes
315:
316:
317: If p_rec.business_group_id is not null then
318: hr_api.validate_bus_grp_id
319: (p_business_group_id => p_rec.business_group_id
320: ,p_associated_column1 => pqh_opg_shd.g_tab_nam
321: || '.BUSINESS_GROUP_ID');
322: end if ;

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

353: hr_utility.set_location('Entering:'||l_proc, 5);
354: --
355: -- Call all supporting business operations
356: --
357: -- EDIT_HERE: The following call to hr_api.validate_bus_grp_id
358: -- will only be valid when the business_group_id is not null.
359: -- As this column is defined as optional on the table then
360: -- different logic will be required to handle the null case.
361: -- If this is a start-up data entity then:

Line 373: hr_api.validate_bus_grp_id

369: -- value is set in client_info.
370: -- Remove this comment when the edit has been completed.
371: -- Validate Important Attributes
372: If p_rec.business_group_id is not null then
373: hr_api.validate_bus_grp_id
374: (p_business_group_id => p_rec.business_group_id
375: ,p_associated_column1 => pqh_opg_shd.g_tab_nam
376: || '.BUSINESS_GROUP_ID');
377: end if ;