DBA Data[Home] [Help]

APPS.OTA_THG_BUS dependencies on HR_API

Line 51: hr_api.mandatory_arg_error

47: hr_utility.set_location('Entering:'|| l_proc, 10);
48: --
49: -- Ensure that all the mandatory parameter are not null
50: --
51: hr_api.mandatory_arg_error
52: (p_api_name => l_proc
53: ,p_argument => 'gl_default_segment_id'
54: ,p_argument_value => p_gl_default_segment_id
55: );

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: hr_utility.set_location(' Leaving:'|| l_proc, 20);

Line 118: hr_api.mandatory_arg_error

114: hr_utility.set_location('Entering:'|| l_proc, 10);
115: --
116: -- Ensure that all the mandatory parameter are not null
117: --
118: hr_api.mandatory_arg_error
119: (p_api_name => l_proc
120: ,p_argument => 'gl_default_segment_id'
121: ,p_argument_value => p_gl_default_segment_id
122: );

Line 124: if ( nvl(ota_thg_bus.g_gl_default_segment_id, hr_api.g_number)

120: ,p_argument => 'gl_default_segment_id'
121: ,p_argument_value => p_gl_default_segment_id
122: );
123: --
124: if ( nvl(ota_thg_bus.g_gl_default_segment_id, hr_api.g_number)
125: = p_gl_default_segment_id) then
126: --
127: -- The legislation code has already been found with a previous
128: -- call to this function. Just return the value in the global

Line 218: hr_api.argument_changed_error

214: -- not been updated.
215: --
216: EXCEPTION
217: WHEN l_error THEN
218: hr_api.argument_changed_error
219: (p_api_name => l_proc
220: ,p_argument => l_argument);
221: WHEN OTHERS THEN
222: RAISE;

Line 242: nvl(ota_thg_shd.g_old_rec.hr_data_source,hr_api.g_varchar2) <>

238: hr_utility.set_location(' Leaving:'||l_proc, 10);
239:
240:
241: if (((p_gl_default_segment_id is not null) and
242: nvl(ota_thg_shd.g_old_rec.hr_data_source,hr_api.g_varchar2) <>
243: nvl(p_hr_data_source,hr_api.g_varchar2))
244: or
245: (p_gl_default_segment_id is null)) then
246:

Line 243: nvl(p_hr_data_source,hr_api.g_varchar2))

239:
240:
241: if (((p_gl_default_segment_id is not null) and
242: nvl(ota_thg_shd.g_old_rec.hr_data_source,hr_api.g_varchar2) <>
243: nvl(p_hr_data_source,hr_api.g_varchar2))
244: or
245: (p_gl_default_segment_id is null)) then
246:
247: hr_utility.set_location(' entering:'||l_proc, 20);

Line 254: if hr_api.not_exists_in_hrstanlookups

250: -- check if the hr_data_source value exists in hr_lookups
251: -- where lookup_type is 'OTA_CROSS_CHARGE_TABLE'
252: --
253: if p_hr_data_source is not null then
254: if hr_api.not_exists_in_hrstanlookups
255: (p_effective_date => p_effective_date
256: ,p_lookup_type => 'OTA_CROSS_CHARGE_TABLE'
257: ,p_lookup_code => p_hr_data_source) then
258: fnd_message.set_name('OTA','OTA_13225_THG_SOURCE_INVALID');