DBA Data[Home] [Help]

APPS.FUN_GL_ASF_EVENTS_PKG dependencies on WF_EVENT_T

Line 10: ,p_event IN OUT NOCOPY wf_event_t

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

Line 18: ,p_event IN OUT NOCOPY wf_event_t

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

Line 27: ,p_event IN OUT NOCOPY wf_event_t

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

Line 35: ,p_event IN OUT NOCOPY wf_event_t

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

Line 43: ,p_event IN OUT NOCOPY wf_event_t

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: