DBA Data[Home] [Help]

APPS.FF_FFP_BUS dependencies on FF_FFP_SHD

Line 224: ,p_rec in ff_ffp_shd.g_rec_type

220: -- {End Of Comments}
221: -- ----------------------------------------------------------------------------
222: Procedure chk_non_updateable_args
223: (p_effective_date in date
224: ,p_rec in ff_ffp_shd.g_rec_type
225: ) IS
226: --
227: l_proc varchar2(72) := g_package || 'chk_non_updateable_args';
228: --

Line 234: IF NOT ff_ffp_shd.api_updating

230: --
231: -- Only proceed with the validation if a row exists for the current
232: -- record in the HR Schema.
233: --
234: IF NOT ff_ffp_shd.api_updating
235: (p_function_id => p_rec.function_id
236: ,p_sequence_number => p_rec.sequence_number
237: ,p_object_version_number => p_rec.object_version_number
238: ) THEN

Line 282: ff_ffp_shd.constraint_error('FF_FUNCTION_PARAMETERS_FK1');

278: open csr_function_id;
279: fetch csr_function_id into l_exists;
280: if csr_function_id%notfound then
281: close csr_function_id;
282: ff_ffp_shd.constraint_error('FF_FUNCTION_PARAMETERS_FK1');
283: end if;
284: close csr_function_id;
285: --
286: hr_utility.set_location('Entering:'|| l_proc, 20);

Line 329: ff_ffp_shd.constraint_error('FF_FP_CLASS_CHK');

325: (p_effective_date => p_effective_date
326: ,p_lookup_type => 'PARAMETER_CLASS'
327: ,p_lookup_code => p_class
328: ) then
329: ff_ffp_shd.constraint_error('FF_FP_CLASS_CHK');
330: end if;
331: --
332: hr_utility.set_location('Entering:'|| l_proc, 20);
333: --

Line 370: ff_ffp_shd.constraint_error('FF_FP_DATA_TYPE_CHK');

366: (p_effective_date => p_effective_date
367: ,p_lookup_type => 'DATA_TYPE'
368: ,p_lookup_code => p_data_type
369: ) then
370: ff_ffp_shd.constraint_error('FF_FP_DATA_TYPE_CHK');
371: end if;
372: --
373: hr_utility.set_location('Entering:'|| l_proc, 20);
374: --

Line 464: ff_ffp_shd.constraint_error('FF_FP_OPTIONAL_CHK');

460: (p_effective_date => p_effective_date
461: ,p_lookup_type => 'YES_NO'
462: ,p_lookup_code => p_optional
463: ) then
464: ff_ffp_shd.constraint_error('FF_FP_OPTIONAL_CHK');
465: end if;
466: -- if parameter class is 'OUT' or 'IN/OUT' type then optional must be 'N'
467: if (p_class <> 'I' and p_optional <> 'N' ) then
468: ff_ffp_shd.constraint_error('FF_FP_OPTIONAL_CHK');

Line 468: ff_ffp_shd.constraint_error('FF_FP_OPTIONAL_CHK');

464: ff_ffp_shd.constraint_error('FF_FP_OPTIONAL_CHK');
465: end if;
466: -- if parameter class is 'OUT' or 'IN/OUT' type then optional must be 'N'
467: if (p_class <> 'I' and p_optional <> 'N' ) then
468: ff_ffp_shd.constraint_error('FF_FP_OPTIONAL_CHK');
469: end if;
470:
471: end if;
472: --

Line 519: ff_ffp_shd.constraint_error('FF_FP_CONTINUING_PARAMETER_CHK');

515: (p_effective_date => p_effective_date
516: ,p_lookup_type => 'YES_NO'
517: ,p_lookup_code => p_continuing_parameter
518: ) then
519: ff_ffp_shd.constraint_error('FF_FP_CONTINUING_PARAMETER_CHK');
520: end if;
521: -- if parameter class is 'OUT' or 'IN/OUT' type then continuing_parameter must be 'N'
522: if (p_class <> 'I' and p_continuing_parameter <> 'N') then
523: ff_ffp_shd.constraint_error('FF_FP_CONTINUING_PARAMETER_CHK');

Line 523: ff_ffp_shd.constraint_error('FF_FP_CONTINUING_PARAMETER_CHK');

519: ff_ffp_shd.constraint_error('FF_FP_CONTINUING_PARAMETER_CHK');
520: end if;
521: -- if parameter class is 'OUT' or 'IN/OUT' type then continuing_parameter must be 'N'
522: if (p_class <> 'I' and p_continuing_parameter <> 'N') then
523: ff_ffp_shd.constraint_error('FF_FP_CONTINUING_PARAMETER_CHK');
524: end if;
525:
526: end if;
527: --

Line 573: ff_ffp_shd.constraint_error('FF_FUNCTION_PARAMETERS_UK2');

569: open csr_unique_parameter;
570: fetch csr_unique_parameter into l_exists;
571: if csr_unique_parameter%found then
572: close csr_unique_parameter;
573: ff_ffp_shd.constraint_error('FF_FUNCTION_PARAMETERS_UK2');
574: end if;
575: close csr_unique_parameter;
576: end if;
577:

Line 644: ,p_rec in ff_ffp_shd.g_rec_type

640: -- |---------------------------< insert_validate >----------------------------|
641: -- ----------------------------------------------------------------------------
642: Procedure insert_validate
643: (p_effective_date in date
644: ,p_rec in ff_ffp_shd.g_rec_type
645: ) is
646: --
647: cursor csr_business_group is
648: select business_group_id

Line 711: ,p_rec in ff_ffp_shd.g_rec_type

707: -- |---------------------------< update_validate >----------------------------|
708: -- ----------------------------------------------------------------------------
709: Procedure update_validate
710: (p_effective_date in date
711: ,p_rec in ff_ffp_shd.g_rec_type
712: ) is
713: --
714: cursor csr_business_group is
715: select business_group_id

Line 782: (p_rec in ff_ffp_shd.g_rec_type

778: -- ----------------------------------------------------------------------------
779: -- |---------------------------< delete_validate >----------------------------|
780: -- ----------------------------------------------------------------------------
781: Procedure delete_validate
782: (p_rec in ff_ffp_shd.g_rec_type
783: ) is
784: --
785: cursor csr_business_group is
786: select business_group_id