DBA Data[Home] [Help]

PACKAGE BODY: APPS.HR_NL_ASG_EXTRA_INFO_CHECKS

Source


1 PACKAGE BODY hr_nl_asg_extra_info_checks AS
2   /* $Header: penlaeiv.pkb 120.0.12000000.2 2007/02/28 10:53:27 spendhar ship $ */
3   --
4   --
5   -- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
6   -- Sets the Profile PER_ASSIGNMENT_ID to the Current Assignment
7   -- for Valueset to validate correctly.
8   -- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9   --
10   PROCEDURE set_asg_id (p_assignment_id  in     number) IS
11   BEGIN
12 
13     /* Added for GSI Bug 5472781 */
14   IF hr_utility.chk_product_install('Oracle Human Resources', 'NL') THEN
15     --
16     --
17     -- Set the Profile ID
18     --
19     FND_PROFILE.put('PER_ASSIGNMENT_ID',p_assignment_id);
20 
21   END IF;/* Added for GSI Bug 5472781 */
22 
23   END set_asg_id;
24 
25 END hr_nl_asg_extra_info_checks;