DBA Data[Home] [Help]

PACKAGE: APPS.ASP_ALERTS_SUBS

Source


1 PACKAGE ASP_ALERTS_SUBS as
2 /* $Header: aspasubs.pls 120.1 2005/08/19 12:58 axavier noship $ */
3 
4 ---------------------------------------------------------------------------
5 -- Package Name:   ASP_ALERTS_SUBS
6 ---------------------------------------------------------------------------
7 -- Description:
8 --      Generic Subscription Package for Sales Alerts Related Business Events.
9 --
10 -- Procedures:
11 --   (see below for specification)
12 --
13 -- History:
14 --   08-Aug-2005  axavier created.
15 ---------------------------------------------------------------------------
16 
17 /*-------------------------------------------------------------------------*
18  |                             PUBLIC CONSTANTS
19  *-------------------------------------------------------------------------*/
20 
21 /*-------------------------------------------------------------------------*
22  |                             PUBLIC DATATYPES
23  *-------------------------------------------------------------------------*/
24 
25 /*-------------------------------------------------------------------------*
26  |                             PUBLIC VARIABLES
27  *-------------------------------------------------------------------------*/
28 
29 /*-------------------------------------------------------------------------*
30  |                             PUBLIC ROUTINES
31  *-------------------------------------------------------------------------*/
32 
33 --------------------------------------------------------------------------------
34 --
35 --  Procedure: Initiate_Alerts
36 --   Generic Subscription Function for Sales Alerts Related Business Events.
37 --   This function will be called by the BES if a Service Request is Escalated.
38 --   This could be used by the end-customer for extending the Alerting System.
39 --
40 --  Arguments IN/OUT:
41 --   P_subscription_guid  - which uniquely identifies the subscription.
42 --   P_event   - encapulates the Event, Parameters and other event related
43 --               accessor methods.
44 --
45 --------------------------------------------------------------------------------
46 
47 
48 FUNCTION Initiate_Alerts(
49   P_subscription_guid  in RAW,
50   P_event              in out NOCOPY WF_EVENT_T) RETURN VARCHAR2;
51 
52 END ASP_ALERTS_SUBS;