DBA Data[Home] [Help]

APPS.PER_ENT_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 => 'calendar_entry_id'
48: ,p_argument_value => p_calendar_entry_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 => 'calendar_entry_id'
112: ,p_argument_value => p_calendar_entry_id
113: );

Line 115: if ( nvl(per_ent_bus.g_calendar_entry_id, hr_api.g_number)

111: ,p_argument => 'calendar_entry_id'
112: ,p_argument_value => p_calendar_entry_id
113: );
114: --
115: if ( nvl(per_ent_bus.g_calendar_entry_id, hr_api.g_number)
116: = p_calendar_entry_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 204: If nvl(p_rec.legislation_code, hr_api.g_varchar2) <>

200: END IF;
201: --
202:
203: -- check legislation code is not updated
204: If nvl(p_rec.legislation_code, hr_api.g_varchar2) <>
205: nvl(per_ent_shd.g_old_rec.legislation_code ,hr_api.g_varchar2)
206: then
207: hr_api.argument_changed_error
208: (p_api_name => l_proc

Line 205: nvl(per_ent_shd.g_old_rec.legislation_code ,hr_api.g_varchar2)

201: --
202:
203: -- check legislation code is not updated
204: If nvl(p_rec.legislation_code, hr_api.g_varchar2) <>
205: nvl(per_ent_shd.g_old_rec.legislation_code ,hr_api.g_varchar2)
206: then
207: hr_api.argument_changed_error
208: (p_api_name => l_proc
209: ,p_argument => 'LEGISLATION_CODE'

Line 207: hr_api.argument_changed_error

203: -- check legislation code is not updated
204: If nvl(p_rec.legislation_code, hr_api.g_varchar2) <>
205: nvl(per_ent_shd.g_old_rec.legislation_code ,hr_api.g_varchar2)
206: then
207: hr_api.argument_changed_error
208: (p_api_name => l_proc
209: ,p_argument => 'LEGISLATION_CODE'
210: ,p_base_table => 'PER_CALENDAR_ENTRIES'
211: );

Line 215: If nvl(p_rec.identifier_key, hr_api.g_varchar2) <>

211: );
212: end if;
213:
214: -- check identifier key is not updated
215: If nvl(p_rec.identifier_key, hr_api.g_varchar2) <>
216: nvl(per_ent_shd.g_old_rec.identifier_key ,hr_api.g_varchar2)
217: then
218: hr_api.argument_changed_error
219: (p_api_name => l_proc

Line 216: nvl(per_ent_shd.g_old_rec.identifier_key ,hr_api.g_varchar2)

212: end if;
213:
214: -- check identifier key is not updated
215: If nvl(p_rec.identifier_key, hr_api.g_varchar2) <>
216: nvl(per_ent_shd.g_old_rec.identifier_key ,hr_api.g_varchar2)
217: then
218: hr_api.argument_changed_error
219: (p_api_name => l_proc
220: ,p_argument => 'IDENTIFIER_KEY'

Line 218: hr_api.argument_changed_error

214: -- check identifier key is not updated
215: If nvl(p_rec.identifier_key, hr_api.g_varchar2) <>
216: nvl(per_ent_shd.g_old_rec.identifier_key ,hr_api.g_varchar2)
217: then
218: hr_api.argument_changed_error
219: (p_api_name => l_proc
220: ,p_argument => 'IDENTIFIER_KEY'
221: ,p_base_table => 'PER_CALENDAR_ENTRIES'
222: );

Line 306: if hr_api.NOT_EXISTS_IN_HR_LOOKUPS

302: ELSIF ((p_calendar_entry_id is null) or
303: ((p_calendar_entry_id is not null) and
304: (per_ent_shd.g_old_rec.type <> p_type))) then
305: --
306: if hr_api.NOT_EXISTS_IN_HR_LOOKUPS
307: (p_effective_date => p_effective_date
308: ,p_lookup_type => 'CALENDAR_ENTRY_TYPE'
309: ,p_lookup_code => p_type
310: )

Line 930: hr_api.validate_bus_grp_id

926: --
927: -- Call all supporting business operations
928: --
929: If p_rec.business_group_id is not null then
930: hr_api.validate_bus_grp_id
931: (p_business_group_id => p_rec.business_group_id
932: ,p_associated_column1 => per_ent_shd.g_tab_nam
933: || '.BUSINESS_GROUP_ID');
934: End If;

Line 1010: hr_api.validate_bus_grp_id

1006: --
1007: -- Call all supporting business operations
1008: --
1009: If p_rec.business_group_id is not null then
1010: hr_api.validate_bus_grp_id
1011: (p_business_group_id => p_rec.business_group_id
1012: ,p_associated_column1 => per_ent_shd.g_tab_nam
1013: || '.BUSINESS_GROUP_ID');
1014: End if;