DBA Data[Home] [Help]

APPS.FF_FFN_BUS dependencies on HR_API

Line 47: hr_api.mandatory_arg_error

43: hr_utility.set_location('Entering:'|| l_proc, 10);
44: --
45: -- Ensure that all the mandatory parameter are not null
46: --
47: hr_api.mandatory_arg_error
48: (p_api_name => l_proc
49: ,p_argument => 'function_id'
50: ,p_argument_value => p_function_id
51: );

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: -- Set the sessions legislation context in HR_SESSION_DATA

Line 80: hr_api.set_legislation_context(l_legislation_code);

76: );
77: --
78: -- Set the sessions legislation context in HR_SESSION_DATA
79: --
80: hr_api.set_legislation_context(l_legislation_code);
81: end if;
82: --
83: hr_utility.set_location(' Leaving:'|| l_proc, 20);
84: --

Line 116: hr_api.mandatory_arg_error

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

Line 122: if ( nvl(ff_ffn_bus.g_function_id, hr_api.g_number)

118: ,p_argument => 'function_id'
119: ,p_argument_value => p_function_id
120: );
121: --
122: if ( nvl(ff_ffn_bus.g_function_id, hr_api.g_number)
123: = p_function_id) then
124: --
125: -- The legislation code has already been found with a previous
126: -- call to this function. Just return the value in the global

Line 244: hr_api.mandatory_arg_error

240: hr_utility.set_location('Entering:'|| l_proc, 10);
241: --
242: -- CLASS is mandatory.
243: --
244: hr_api.mandatory_arg_error
245: (p_api_name => l_proc
246: ,p_argument => 'CLASS'
247: ,p_argument_value => p_class
248: );

Line 250: if hr_api.not_exists_in_hrstanlookups

246: ,p_argument => 'CLASS'
247: ,p_argument_value => p_class
248: );
249: hr_utility.set_location('Entering:'|| l_proc, 20);
250: if hr_api.not_exists_in_hrstanlookups
251: (p_effective_date => p_effective_date
252: ,p_lookup_type => 'FUNCTION_CLASS'
253: ,p_lookup_code => p_class
254: ) then

Line 291: hr_api.mandatory_arg_error

287: hr_utility.set_location('Entering:'|| l_proc, 10);
288: --
289: -- DATA_TYPE is mandatory.
290: --
291: hr_api.mandatory_arg_error
292: (p_api_name => l_proc
293: ,p_argument => 'DATA_TYPE'
294: ,p_argument_value => p_data_type
295: );

Line 297: if hr_api.not_exists_in_hrstanlookups

293: ,p_argument => 'DATA_TYPE'
294: ,p_argument_value => p_data_type
295: );
296:
297: if hr_api.not_exists_in_hrstanlookups
298: (p_effective_date => p_effective_date
299: ,p_lookup_type => 'DATA_TYPE'
300: ,p_lookup_code => p_data_type
301: ) then

Line 333: hr_api.mandatory_arg_error

329: hr_utility.set_location('Entering:'|| l_proc, 10);
330: --
331: -- NAME is mandatory.
332: --
333: hr_api.mandatory_arg_error
334: (p_api_name => l_proc
335: ,p_argument => 'NAME'
336: ,p_argument_value => p_name
337: );

Line 456: if nvl(p_rec.business_group_id, hr_api.g_number) <>

452: fnd_message.raise_error;
453: END IF;
454: --
455: --
456: if nvl(p_rec.business_group_id, hr_api.g_number) <>
457: nvl(ff_ffn_shd.g_old_rec.business_group_id, hr_api.g_number) then
458: hr_api.argument_changed_error
459: (p_api_name => l_proc
460: ,p_argument => 'BUSINESS_GROUP_ID'

Line 457: nvl(ff_ffn_shd.g_old_rec.business_group_id, hr_api.g_number) then

453: END IF;
454: --
455: --
456: if nvl(p_rec.business_group_id, hr_api.g_number) <>
457: nvl(ff_ffn_shd.g_old_rec.business_group_id, hr_api.g_number) then
458: hr_api.argument_changed_error
459: (p_api_name => l_proc
460: ,p_argument => 'BUSINESS_GROUP_ID'
461: ,p_base_table => ff_ffn_shd.g_tab_nam

Line 458: hr_api.argument_changed_error

454: --
455: --
456: if nvl(p_rec.business_group_id, hr_api.g_number) <>
457: nvl(ff_ffn_shd.g_old_rec.business_group_id, hr_api.g_number) then
458: hr_api.argument_changed_error
459: (p_api_name => l_proc
460: ,p_argument => 'BUSINESS_GROUP_ID'
461: ,p_base_table => ff_ffn_shd.g_tab_nam
462: );

Line 465: if nvl(p_rec.legislation_code, hr_api.g_varchar2) <>

461: ,p_base_table => ff_ffn_shd.g_tab_nam
462: );
463: end if;
464: --
465: if nvl(p_rec.legislation_code, hr_api.g_varchar2) <>
466: nvl(ff_ffn_shd.g_old_rec.legislation_code, hr_api.g_varchar2) then
467: hr_api.argument_changed_error
468: (p_api_name => l_proc
469: ,p_argument => 'LEGISLATION_CODE'

Line 466: nvl(ff_ffn_shd.g_old_rec.legislation_code, hr_api.g_varchar2) then

462: );
463: end if;
464: --
465: if nvl(p_rec.legislation_code, hr_api.g_varchar2) <>
466: nvl(ff_ffn_shd.g_old_rec.legislation_code, hr_api.g_varchar2) then
467: hr_api.argument_changed_error
468: (p_api_name => l_proc
469: ,p_argument => 'LEGISLATION_CODE'
470: ,p_base_table => ff_ffn_shd.g_tab_nam

Line 467: hr_api.argument_changed_error

463: end if;
464: --
465: if nvl(p_rec.legislation_code, hr_api.g_varchar2) <>
466: nvl(ff_ffn_shd.g_old_rec.legislation_code, hr_api.g_varchar2) then
467: hr_api.argument_changed_error
468: (p_api_name => l_proc
469: ,p_argument => 'LEGISLATION_CODE'
470: ,p_base_table => ff_ffn_shd.g_tab_nam
471: );

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

470: ,p_base_table => ff_ffn_shd.g_tab_nam
471: );
472: end if;
473:
474: if nvl(p_rec.function_id, hr_api.g_number) <>
475: nvl(ff_ffn_shd.g_old_rec.function_id, hr_api.g_number) then
476: hr_api.argument_changed_error
477: (p_api_name => l_proc
478: ,p_argument => 'FUNCTION_ID'

Line 475: nvl(ff_ffn_shd.g_old_rec.function_id, hr_api.g_number) then

471: );
472: end if;
473:
474: if nvl(p_rec.function_id, hr_api.g_number) <>
475: nvl(ff_ffn_shd.g_old_rec.function_id, hr_api.g_number) then
476: hr_api.argument_changed_error
477: (p_api_name => l_proc
478: ,p_argument => 'FUNCTION_ID'
479: ,p_base_table => ff_ffn_shd.g_tab_nam

Line 476: hr_api.argument_changed_error

472: end if;
473:
474: if nvl(p_rec.function_id, hr_api.g_number) <>
475: nvl(ff_ffn_shd.g_old_rec.function_id, hr_api.g_number) then
476: hr_api.argument_changed_error
477: (p_api_name => l_proc
478: ,p_argument => 'FUNCTION_ID'
479: ,p_base_table => ff_ffn_shd.g_tab_nam
480: );

Line 558: hr_api.validate_bus_grp_id

554: NOT IN ('GENERIC','STARTUP') THEN
555: --
556: -- Validate Important Attributes
557: --
558: hr_api.validate_bus_grp_id
559: (p_business_group_id => p_rec.business_group_id
560: ,p_associated_column1 => ff_ffn_shd.g_tab_nam
561: || '.BUSINESS_GROUP_ID');
562: --

Line 632: hr_api.validate_bus_grp_id

628: NOT IN ('GENERIC','STARTUP') THEN
629: --
630: -- Validate Important Attributes
631: --
632: hr_api.validate_bus_grp_id
633: (p_business_group_id => p_rec.business_group_id
634: ,p_associated_column1 => ff_ffn_shd.g_tab_nam
635: || '.BUSINESS_GROUP_ID');
636: --