DBA Data[Home] [Help]

PACKAGE: APPS.PER_EVENTS_BK1

Source


1 package PER_EVENTS_BK1 AUTHID CURRENT_USER as
2 /* $Header: peevtapi.pkh 120.1 2005/10/02 02:17:00 aroussel $ */
3 
4 Procedure create_event_b
5 (p_date_start                       in     DATE
6 ,p_type                             in     VARCHAR2
7 ,p_business_group_id                in     NUMBER
8 ,p_location_id                      in     NUMBER
9 ,p_internal_contact_person_id       in     NUMBER
10 ,p_organization_run_by_id           in     NUMBER
11 ,p_assignment_id                    in     NUMBER
12 ,p_contact_telephone_number         in     VARCHAR2
13 ,p_date_end                         in     DATE
14 ,p_emp_or_apl                       in     VARCHAR2
15 ,p_event_or_interview               in     VARCHAR2
16 ,p_external_contact                 in     VARCHAR2
17 ,p_time_end                         in     VARCHAR2
18 ,p_time_start                       in     VARCHAR2
19 ,p_attribute_category               in     VARCHAR2
20 ,p_attribute1                       in     VARCHAR2
21 ,p_attribute2                       in     VARCHAR2
22 ,p_attribute3                       in     VARCHAR2
23 ,p_attribute4                       in     VARCHAR2
24 ,p_attribute5                       in     VARCHAR2
25 ,p_attribute6                       in     VARCHAR2
26 ,p_attribute7                       in     VARCHAR2
27 ,p_attribute8                       in     VARCHAR2
28 ,p_attribute9                       in     VARCHAR2
29 ,p_attribute10                      in     VARCHAR2
30 ,p_attribute11                      in     VARCHAR2
31 ,p_attribute12                      in     VARCHAR2
32 ,p_attribute13                      in     VARCHAR2
33 ,p_attribute14                      in     VARCHAR2
34 ,p_attribute15                      in     VARCHAR2
35 ,p_attribute16                      in     VARCHAR2
36 ,p_attribute17                      in     VARCHAR2
37 ,p_attribute18                      in     VARCHAR2
38 ,p_attribute19                      in     VARCHAR2
39 ,p_attribute20                      in     VARCHAR2
40 ,p_party_id                         in     NUMBER    -- HR/TCA merge
41 );
42 
43 
44 Procedure create_event_a
45 (p_date_start                       in     DATE
46 ,p_type                             in     VARCHAR2
47 ,p_business_group_id                in     NUMBER
48 ,p_location_id                      in     NUMBER
49 ,p_internal_contact_person_id       in     NUMBER
50 ,p_organization_run_by_id           in     NUMBER
51 ,p_assignment_id                    in     NUMBER
52 ,p_contact_telephone_number         in     VARCHAR2
53 ,p_date_end                         in     DATE
54 ,p_emp_or_apl                       in     VARCHAR2
55 ,p_event_or_interview               in     VARCHAR2
56 ,p_external_contact                 in     VARCHAR2
57 ,p_time_end                         in     VARCHAR2
58 ,p_time_start                       in     VARCHAR2
59 ,p_attribute_category               in     VARCHAR2
60 ,p_attribute1                       in     VARCHAR2
61 ,p_attribute2                       in     VARCHAR2
62 ,p_attribute3                       in     VARCHAR2
63 ,p_attribute4                       in     VARCHAR2
64 ,p_attribute5                       in     VARCHAR2
65 ,p_attribute6                       in     VARCHAR2
66 ,p_attribute7                       in     VARCHAR2
67 ,p_attribute8                       in     VARCHAR2
68 ,p_attribute9                       in     VARCHAR2
69 ,p_attribute10                      in     VARCHAR2
70 ,p_attribute11                      in     VARCHAR2
71 ,p_attribute12                      in     VARCHAR2
72 ,p_attribute13                      in     VARCHAR2
73 ,p_attribute14                      in     VARCHAR2
74 ,p_attribute15                      in     VARCHAR2
75 ,p_attribute16                      in     VARCHAR2
76 ,p_attribute17                      in     VARCHAR2
77 ,p_attribute18                      in     VARCHAR2
78 ,p_attribute19                      in     VARCHAR2
79 ,p_attribute20                      in     VARCHAR2
80 ,p_party_id                         in     NUMBER    -- HR/TCA merge
81 );
82 
83 end PER_EVENTS_BK1;