DBA Data[Home] [Help]

PACKAGE: APPS.PV_TAP_BES_PKG

Source


1 PACKAGE PV_TAP_BES_PKG AUTHID CURRENT_USER AS
2 /* $Header: pvxtbess.pls 115.0 2003/10/15 03:52:20 rdsharma noship $ */
3 -- ===============================================================
4 -- Start of Comments
5 -- Package name
6 --          PV_TAP_BES_PKG
7 -- Purpose
8 --
9 -- History
10 --
11 -- NOTE
12 --
13 -- This package includes all the PRM related Territory Assignment
14 -- subscriptions for following modules -
15 --             * Organization Update
16 --             * Party Site Update
17 --             * Location Update
18 --             * Contact Point Update
19 -- ===============================================================
20 
21 -- Start of Comments
22 --
23 --      API name  : organization_update_post
24 --      Type      : Public
25 --      Function  : This function is used as a subscription for Organization
26 --                  update business event attached to following event -
27 --                      - oracle.apps.ar.hz.Organization.update
28 --
29 --      Pre-reqs  :
30 --
31 --      Paramaeters     :
32 --      IN              :
33 --                p_subscription_guid      IN raw
34 --                p_event                  IN out NOCOPY wf_event_t
35 --      OUT             :
36 --
37 --      Version :
38 --                      Initial version         1.0
39 --
40 --      Notes:   Subscription attach to 'oracle.apps.ar.hz.Organization.update'
41 --               event.
42 --
43 --
44 -- End of Comments
45  FUNCTION organization_update_post
46  ( p_subscription_guid      in raw,
47    p_event                  in out NOCOPY wf_event_t)
48  RETURN VARCHAR2;
49 
50 -- Start of Comments
51 --
52 --      API name  : partysite_update_post
53 --      Type      : Public
54 --      Function  : This function is used as a subscription for Party Site
55 --                  update business event attached to following event -
56 --                      - oracle.apps.ar.hz.PartySite.update
57 --
58 --      Pre-reqs  :
59 --
60 --      Paramaeters     :
61 --      IN              :
62 --                p_subscription_guid      IN raw
63 --                p_event                  IN out NOCOPY wf_event_t
64 --      OUT             :
65 --
66 --      Version :
67 --                      Initial version         1.0
68 --
69 --      Notes:   Subscription attach to 'oracle.apps.ar.hz.PartySite.update'
70 --               event.
71 --
72 --
73 -- End of Comments
74  FUNCTION partysite_update_post
75  ( p_subscription_guid      in raw,
76    p_event                  in out NOCOPY wf_event_t)
77  RETURN VARCHAR2;
78 
79 -- Start of Comments
80 --
81 --      API name  : location_update_post
82 --      Type      : Public
83 --      Function  : This function is used as a subscription for location
84 --                  update business event attached to following event -
85 --                      - oracle.apps.ar.hz.Location.update
86 --
87 --      Pre-reqs  :
88 --
89 --      Paramaeters     :
90 --      IN              :
91 --                p_subscription_guid      IN raw
92 --                p_event                  IN out NOCOPY wf_event_t
93 --      OUT             :
94 --
95 --      Version :
96 --                      Initial version         1.0
97 --
98 --      Notes:   Subscription attach to 'oracle.apps.ar.hz.Location.update'
99 --               event.
100 --
101 --
102 -- End of Comments
103  FUNCTION location_update_post
104  ( p_subscription_guid      in raw,
105    p_event                  in out NOCOPY wf_event_t)
106  RETURN VARCHAR2;
107 
108 --
109 --      API name  : contactpoint_update_post
110 --      Type      : Public
111 --      Function  : This function is used as a subscription for Contact point
112 --                  update business event attached to following event -
113 --                      - oracle.apps.ar.hz.ContactPoint.update
114 --
115 --      Pre-reqs  :
116 --
117 --      Paramaeters     :
118 --      IN              :
119 --                p_subscription_guid      IN raw
120 --                p_event                  IN out NOCOPY wf_event_t
121 --      OUT             :
122 --
123 --      Version :
124 --                      Initial version         1.0
125 --
126 --      Notes:   Subscription attach to 'oracle.apps.ar.hz.ContactPoint.update'
127 --               event.
128 --
129 --
130 -- End of Comments
131  FUNCTION contactpoint_update_post
132  ( p_subscription_guid      in raw,
133    p_event                  in out NOCOPY wf_event_t)
134  RETURN VARCHAR2;
135 
136 END PV_TAP_BES_PKG;