DBA Data[Home] [Help]

APPS.HR_CN_ASSIGNMENT_API dependencies on HR_CN_API

Line 381: hr_cn_api.set_location(g_trace, 'Entering:'|| l_proc, 10);

377: --
378: BEGIN
379:
380: l_proc := g_package||'create_cn_secondary_emp_asg';
381: hr_cn_api.set_location(g_trace, 'Entering:'|| l_proc, 10);
382:
383: --
384: -- Initialise local variable
385: --

Line 391: hr_cn_api.check_person (p_person_id, 'CN', l_effective_date);

387:
388: --
389: -- Ensure that the employee IS within a cn business group
390: --
391: hr_cn_api.check_person (p_person_id, 'CN', l_effective_date);
392:
393: hr_cn_api.set_location(g_trace, l_proc, 20);
394:
395: --

Line 393: hr_cn_api.set_location(g_trace, l_proc, 20);

389: -- Ensure that the employee IS within a cn business group
390: --
391: hr_cn_api.check_person (p_person_id, 'CN', l_effective_date);
392:
393: hr_cn_api.set_location(g_trace, l_proc, 20);
394:
395: --
396: --
397: -- Call create_secondary_emp_asg

Line 550: hr_cn_api.set_location(g_trace, 'Leaving:'|| l_proc, 30);

546: ,p_comment_id => p_comment_id
547: ,p_other_manager_warning => p_other_manager_warning
548: ,p_hourly_salaried_warning => p_hourly_salaried_warning );
549:
550: hr_cn_api.set_location(g_trace, 'Leaving:'|| l_proc, 30);
551:
552: END create_cn_secondary_emp_asg;
553:
554: -- ----------------------------------------------------------------------------

Line 870: hr_cn_api.set_location(g_trace, 'Entering:'|| l_proc, 10);

866:
867: BEGIN
868:
869: l_proc := g_package||'update_cn_emp_asg';
870: hr_cn_api.set_location(g_trace, 'Entering:'|| l_proc, 10);
871:
872: --
873: -- Truncate DATE variables
874: --

Line 877: hr_cn_api.check_assignment(p_assignment_id, 'CN', l_effective_date);

873: -- Truncate DATE variables
874: --
875: l_effective_date := trunc(p_effective_date);
876: --
877: hr_cn_api.check_assignment(p_assignment_id, 'CN', l_effective_date);
878: --
879:
880: hr_cn_api.set_location(g_trace, l_proc, 20);
881:

Line 880: hr_cn_api.set_location(g_trace, l_proc, 20);

876: --
877: hr_cn_api.check_assignment(p_assignment_id, 'CN', l_effective_date);
878: --
879:
880: hr_cn_api.set_location(g_trace, l_proc, 20);
881:
882: --
883: -- Call update_emp_asg business process
884: -- --

Line 994: hr_cn_api.set_location(g_trace, 'Leaving:'|| l_proc, 30);

990: ,p_other_manager_warning => p_other_manager_warning
991: ,p_hourly_salaried_warning => p_hourly_salaried_warning );
992:
993:
994: hr_cn_api.set_location(g_trace, 'Leaving:'|| l_proc, 30);
995:
996: --
997: End update_cn_emp_asg;
998: