DBA Data[Home] [Help]

PACKAGE: APPS.HR_ASSIGNMENT_SET

Source


1 PACKAGE hr_assignment_set AS
2 /* $Header: pyusasst.pkh 120.0 2005/05/29 09:17:54 appldev noship $ */
3 
4 
5 
6 /*
7 Name        : hr_assignment_set (Header)
8 File        : pyusasst.pkh
9 Description : This package will check if the assignment_id is in
10               assignemnt_set or if the person's assigment is in
11               assignment_set_id
12 
13 
14 Change List
15 -----------
16 
17 Version Date      Author                 ER/CR No. Description of Change
18 -------+---------+----------------------+---------+--------------------------
19 
20 40.0    09-aug-00  djoshi                           This fuction returns True
21                                                     or False based on whether
22                                                     the assignment_id  or
23                                                     person_id is part of the
24                                                     assignment_set
25 =============================================================================
26 
27 */
28 FUNCTION assignment_in_set(p_assignmentset_id in number,
29                            p_assignment_id     in number)
30                          RETURN char;
31          PRAGMA RESTRICT_REFERENCES(assignment_in_set,WNDS,WNPS);
32 FUNCTION person_in_set(p_assignment_set_id in number,
33                            p_person_id     in number)
34                          RETURN char;
35          PRAGMA RESTRICT_REFERENCES(person_in_set,WNDS,WNPS);
36 end hr_assignment_set;
37