DBA Data[Home] [Help]

APPS.FF_FCU_BUS dependencies on HR_API

Line 55: hr_api.mandatory_arg_error

51: hr_utility.set_location('Entering:'|| l_proc, 10);
52: --
53: -- Ensure that all the mandatory parameter are not null
54: --
55: hr_api.mandatory_arg_error
56: (p_api_name => l_proc
57: ,p_argument => 'function_id'
58: ,p_argument_value => p_function_id
59: );

Line 60: hr_api.mandatory_arg_error

56: (p_api_name => l_proc
57: ,p_argument => 'function_id'
58: ,p_argument_value => p_function_id
59: );
60: hr_api.mandatory_arg_error
61: (p_api_name => l_proc
62: ,p_argument => 'sequence_number'
63: ,p_argument_value => p_sequence_number
64: );

Line 89: hr_api.set_security_group_id

85: close csr_sec_grp;
86: --
87: -- Set the security_group_id in CLIENT_INFO
88: --
89: hr_api.set_security_group_id
90: (p_security_group_id => l_security_group_id
91: );
92: --
93: -- Set the sessions legislation context in HR_SESSION_DATA

Line 95: hr_api.set_legislation_context(l_legislation_code);

91: );
92: --
93: -- Set the sessions legislation context in HR_SESSION_DATA
94: --
95: hr_api.set_legislation_context(l_legislation_code);
96: end if;
97: --
98: hr_utility.set_location(' Leaving:'|| l_proc, 20);
99: --

Line 140: hr_api.mandatory_arg_error

136: hr_utility.set_location('Entering:'|| l_proc, 10);
137: --
138: -- Ensure that all the mandatory parameter are not null
139: --
140: hr_api.mandatory_arg_error
141: (p_api_name => l_proc
142: ,p_argument => 'function_id'
143: ,p_argument_value => p_function_id
144: );

Line 145: hr_api.mandatory_arg_error

141: (p_api_name => l_proc
142: ,p_argument => 'function_id'
143: ,p_argument_value => p_function_id
144: );
145: hr_api.mandatory_arg_error
146: (p_api_name => l_proc
147: ,p_argument => 'sequence_number'
148: ,p_argument_value => p_sequence_number
149: );

Line 151: if (( nvl(ff_fcu_bus.g_function_id, hr_api.g_number)

147: ,p_argument => 'sequence_number'
148: ,p_argument_value => p_sequence_number
149: );
150: --
151: if (( nvl(ff_fcu_bus.g_function_id, hr_api.g_number)
152: = p_function_id)
153: and ( nvl(ff_fcu_bus.g_sequence_number, hr_api.g_number)
154: = p_sequence_number)) then
155: --

Line 153: and ( nvl(ff_fcu_bus.g_sequence_number, hr_api.g_number)

149: );
150: --
151: if (( nvl(ff_fcu_bus.g_function_id, hr_api.g_number)
152: = p_function_id)
153: and ( nvl(ff_fcu_bus.g_sequence_number, hr_api.g_number)
154: = p_sequence_number)) then
155: --
156: -- The legislation code has already been found with a previous
157: -- call to this function. Just return the value in the global

Line 242: if nvl(p_rec.function_id, hr_api.g_number) <>

238: fnd_message.raise_error;
239: END IF;
240: --
241: --
242: if nvl(p_rec.function_id, hr_api.g_number) <>
243: ff_fcu_shd.g_old_rec.function_id then
244: hr_api.argument_changed_error
245: (p_api_name => l_proc
246: ,p_argument => 'FUNCTION_ID'

Line 244: hr_api.argument_changed_error

240: --
241: --
242: if nvl(p_rec.function_id, hr_api.g_number) <>
243: ff_fcu_shd.g_old_rec.function_id then
244: hr_api.argument_changed_error
245: (p_api_name => l_proc
246: ,p_argument => 'FUNCTION_ID'
247: ,p_base_table => ff_fcu_shd.g_tab_nam
248: );

Line 251: if nvl(p_rec.sequence_number, hr_api.g_number) <>

247: ,p_base_table => ff_fcu_shd.g_tab_nam
248: );
249: end if;
250: --
251: if nvl(p_rec.sequence_number, hr_api.g_number) <>
252: ff_fcu_shd.g_old_rec.sequence_number then
253: hr_api.argument_changed_error
254: (p_api_name => l_proc
255: ,p_argument => 'SEQUENCE_NUMBER'

Line 253: hr_api.argument_changed_error

249: end if;
250: --
251: if nvl(p_rec.sequence_number, hr_api.g_number) <>
252: ff_fcu_shd.g_old_rec.sequence_number then
253: hr_api.argument_changed_error
254: (p_api_name => l_proc
255: ,p_argument => 'SEQUENCE_NUMBER'
256: ,p_base_table => ff_fcu_shd.g_tab_nam
257: );

Line 283: hr_api.mandatory_arg_error

279: begin
280: --
281: -- FUNCTION_ID is mandatory.
282: --
283: hr_api.mandatory_arg_error
284: (p_api_name => l_proc
285: ,p_argument => 'FUNCTION_ID'
286: ,p_argument_value => p_function_id
287: );

Line 328: hr_api.mandatory_arg_error

324: l_exists varchar2(1);
325: begin
326: -- CONTEXT_ID is mandatory.
327: --
328: hr_api.mandatory_arg_error
329: (p_api_name => l_proc
330: ,p_argument => 'CONTEXT_ID'
331: ,p_argument_value => p_context_id
332: );