DBA Data[Home] [Help]

PACKAGE: APPS.ASP_ALERTS_INVOICE

Source


1 PACKAGE ASP_ALERTS_INVOICE as
2 /* $Header: aspaodis.pls 120.0 2005/08/19 12:57 axavier noship $ */
3 
4 ---------------------------------------------------------------------------
5 -- Package Name:   ASP_ALERTS_INVOICE
6 ---------------------------------------------------------------------------
7 -- Description:
8 --  Alerts for overdue invoice is obtained by this
9 --  Concurrent Program, which periodically looks at the transaction tables
10 --  in Oracle Collections.
11 --
12 -- Procedures:
13 --   (see below for specification)
14 --
15 -- History:
16 --   16-Aug-2005  axavier created.
17 ---------------------------------------------------------------------------
18 
19 /*-------------------------------------------------------------------------*
20  |                             PUBLIC CONSTANTS
21  *-------------------------------------------------------------------------*/
22 
23 /*-------------------------------------------------------------------------*
24  |                             PUBLIC DATATYPES
25  *-------------------------------------------------------------------------*/
26 
27 /*-------------------------------------------------------------------------*
28  |                             PUBLIC VARIABLES
29  *-------------------------------------------------------------------------*/
30 
31 /*-------------------------------------------------------------------------*
32  |                             PUBLIC ROUTINES
33  *-------------------------------------------------------------------------*/
34 
35 --------------------------------------------------------------------------------
36 --
37 --  Procedure: Alert_Overdue_Invoice
38 --  Finds all the overdue invoices.
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 PROCEDURE Alert_Overdue_Invoice(
49       errbuf     OUT NOCOPY    VARCHAR2,
50       retcode    OUT NOCOPY    VARCHAR2);
51 
52 END ASP_ALERTS_INVOICE;