DBA Data[Home] [Help]

PACKAGE: APPS.GL_ENTITY_BUDGETS_PKG

Source


1 PACKAGE gl_entity_budgets_pkg AUTHID CURRENT_USER AS
2 /* $Header: glibdebs.pls 120.3 2005/05/05 01:01:37 kvora ship $ */
3 --
4 -- Package
5 --   gl_entity_budgets_pkg
6 -- Purpose
7 --   To contain validation and insertion routines for gl_entity_budgets
8 -- History
9 --   10-18-93  	D. J. Ogg	Created
10 
11   --
12   -- Procedure
13   --   insert_budget
14   -- Purpose
15   --   Used to insert records into gl_entity_budgets
16   --   for a new budget.
17   -- History
18   --   10-18-93  D. J. Ogg    Created
19   -- Arguments
20   --   x_budget_version_id	Version ID of the new budget
21   --   x_ledger_id		Ledger the new budget belongs to
22   --   x_last_updated_by	User ID of last person to
23   --				update the budget
24   --   x_last_update_login      Login ID of last period to update the budget
25   -- Example
26   --   gl_entity_budgets_pkg.insert_budget(1000, 2, 0, 0)
27   -- Notes
28   --
29   PROCEDURE insert_budget(
30   			x_budget_version_id	NUMBER,
31 			x_ledger_id		NUMBER,
32 			x_last_updated_by	NUMBER,
33 			x_last_update_login     NUMBER);
34 
35   --
36   -- Procedure
37   --   insert_entity
38   -- Purpose
39   --   Used to insert records into gl_entity_budgets
40   --   for a new budget organization.
41   -- History
42   --   12-03-93  D. J. Ogg    Created
43   -- Arguments
44   --   x_budget_entity_id	ID of the new budget organization
45   --   x_ledger_id		Ledger the new budget organization
46   --                            belongs to
47   --   x_last_updated_by	User ID of last person to
48   --				update the budget
49   --   x_last_update_login      Login ID of last period to update the budget
50   -- Example
51   --   gl_entity_budgets_pkg.insert_entity(1000, 2, 0, 0)
52   -- Notes
53   --
54   PROCEDURE insert_entity(
55   			x_budget_entity_id	NUMBER,
56 			x_ledger_id		NUMBER,
57 			x_last_updated_by	NUMBER,
58 			x_last_update_login     NUMBER);
59 
60 END gl_entity_budgets_pkg;