DBA Data[Home] [Help]

PACKAGE: APPS.FUN_GL_ASF_EVENTS_PKG

Source


1 PACKAGE FUN_GL_ASF_EVENTS_PKG AS
2 /* $Header: funglasfevnts.pls 120.0 2006/01/13 09:15:02 bsilveir noship $ */
3 
4 
5   -- This procedure is invoked from the GL Accounting Setup Flow page
6   -- when a Balancing Segment Value is removed from the Ledger
7   -- Event Name = oracle.apps.gl.Setup.Ledger.BalancingSegmentValueRemove
8   --
9   FUNCTION ledger_bsv_remove(p_subscription_guid IN RAW
10                               ,p_event             IN OUT NOCOPY wf_event_t
11                               ) RETURN VARCHAR2;
12 
13   -- This procedure is invoked from the GL Accounting Setup Flow page
14   -- when a Balancing Segment Value is removed from the Legal Entity
15   -- Event Name = oracle.apps.gl.Setup.LegalEntity.BalancingSegmentValueRemove
16   --
17   FUNCTION le_bsv_remove(p_subscription_guid IN RAW
18                          ,p_event            IN OUT NOCOPY wf_event_t
19                          ) RETURN VARCHAR2;
20 
21 
22   -- This procedure is invoked from the GL Accounting Setup Flow page
23   -- when a Legal Entity is removed from the Ledger
24   -- Event Name = oracle.apps.gl.Setup.Ledger.LegalEntityRemove
25   --
26   FUNCTION ledger_le_remove(p_subscription_guid IN RAW
27                            ,p_event            IN OUT NOCOPY wf_event_t
28                            ) RETURN VARCHAR2;
29 
30   -- This procedure is invoked from the GL Accounting Setup Flow page
31   -- when a secondary ledger is removed from the Ledger
32   -- Event Name = oracle.apps.gl.Setup.SecondaryLedger.delete
33   --
34   FUNCTION secondary_ledger_delete(p_subscription_guid IN RAW
35                            ,p_event            IN OUT NOCOPY wf_event_t
36                            ) RETURN VARCHAR2;
37 
38   -- This procedure is invoked from the GL Accounting Setup Flow page
39   -- when a reporting ledger is removed from the Ledger
40   -- Event Name = oracle.apps.gl.Setup.ReportingLedger.delete
41   --
42   FUNCTION reporting_ledger_delete(p_subscription_guid IN RAW
43                            ,p_event            IN OUT NOCOPY wf_event_t
44                            ) RETURN VARCHAR2;
45 END;
46