DBA Data[Home] [Help]

APPS.GL_BUDGETS_PKG dependencies on GL_BUDGETS

Line 1: PACKAGE gl_budgets_pkg AUTHID CURRENT_USER AS

1: PACKAGE gl_budgets_pkg AUTHID CURRENT_USER AS
2: /* $Header: glibddfs.pls 120.4 2005/05/05 01:01:24 kvora ship $ */
3: --
4: -- Package
5: -- gl_budgets

Line 5: -- gl_budgets

1: PACKAGE gl_budgets_pkg AUTHID CURRENT_USER AS
2: /* $Header: glibddfs.pls 120.4 2005/05/05 01:01:24 kvora ship $ */
3: --
4: -- Package
5: -- gl_budgets
6: -- Purpose
7: -- To implement various data checking needed for the
8: -- gl_budgets table
9: -- History

Line 8: -- gl_budgets table

4: -- Package
5: -- gl_budgets
6: -- Purpose
7: -- To implement various data checking needed for the
8: -- gl_budgets table
9: -- History
10: -- 10-14-93 D. J. Ogg Created
11: --
12:

Line 18: -- unique within gl_budgets.

14: -- Procedure
15: -- check_unique
16: -- Purpose
17: -- Checks to make sure the given budget_name is
18: -- unique within gl_budgets.
19: -- History
20: -- 10-14-93 D. J. Ogg Created
21: -- Arguments
22: -- name The budget name to be checked

Line 25: -- gl_budgets.check_unique('DBUDGET', 'ABD0123');

21: -- Arguments
22: -- name The budget name to be checked
23: -- rowid The ID of the row to be checked
24: -- Example
25: -- gl_budgets.check_unique('DBUDGET', 'ABD0123');
26: -- Notes
27: --
28: PROCEDURE check_unique(name VARCHAR2,
29: row_id VARCHAR2);

Line 41: -- bid := gl_budgets_pkg.get_unique_id;

37: -- 10-14-93 D. J. Ogg Created
38: -- Arguments
39: -- none
40: -- Example
41: -- bid := gl_budgets_pkg.get_unique_id;
42: -- Notes
43: --
44: FUNCTION get_unique_id RETURN NUMBER;
45:

Line 58: -- gl_budgets_pkg.is_budget_journals_not_req( 123 );

54: -- 12.01.93 E. Rumanang Created
55: -- Arguments
56: -- x_ledger_id ledger_id to be checked.
57: -- Example
58: -- gl_budgets_pkg.is_budget_journals_not_req( 123 );
59: -- Notes
60: --
61: FUNCTION is_budget_journals_not_req(
62: x_ledger_id NUMBER ) RETURN BOOLEAN;

Line 69: -- Gets the row from gl_budgets associated with

65: --
66: -- Procedure
67: -- select_row
68: -- Purpose
69: -- Gets the row from gl_budgets associated with
70: -- the given budget.
71: -- History
72: -- 09-SEP-94 E. Rumanang Created.
73: -- Arguments

Line 74: -- recinfo gl_budgets

70: -- the given budget.
71: -- History
72: -- 09-SEP-94 E. Rumanang Created.
73: -- Arguments
74: -- recinfo gl_budgets
75: -- Example
76: -- select_row.recinfo;
77: -- Notes
78: --

Line 79: PROCEDURE select_row( recinfo IN OUT NOCOPY gl_budgets%ROWTYPE );

75: -- Example
76: -- select_row.recinfo;
77: -- Notes
78: --
79: PROCEDURE select_row( recinfo IN OUT NOCOPY gl_budgets%ROWTYPE );
80:
81:
82:
83: --

Line 87: -- Gets the values of some columns from gl_budgets associated with

83: --
84: -- Procedure
85: -- select_columns
86: -- Purpose
87: -- Gets the values of some columns from gl_budgets associated with
88: -- the given budget.
89: -- History
90: -- 09-SEP-94 E. Rumanang Created.
91: -- Arguments

Line 206: END gl_budgets_pkg;

202: );
203:
204: PROCEDURE Delete_Row(X_Rowid VARCHAR2);
205:
206: END gl_budgets_pkg;