DBA Data[Home] [Help]

APPS.IGS_FI_GL_PERIODS_PKG dependencies on GL_PERIOD_STATUSES

Line 5: old_references gl_period_statuses%ROWTYPE;

1: PACKAGE BODY igs_fi_gl_periods_pkg AS
2: /* $Header: IGSSIC7B.pls 120.1 2005/09/23 03:34:36 agairola noship $ */
3:
4: l_rowid VARCHAR2(25);
5: old_references gl_period_statuses%ROWTYPE;
6: new_references gl_period_statuses%ROWTYPE;
7:
8: PROCEDURE insert_row (
9: x_rowid IN OUT NOCOPY VARCHAR2,

Line 6: new_references gl_period_statuses%ROWTYPE;

2: /* $Header: IGSSIC7B.pls 120.1 2005/09/23 03:34:36 agairola noship $ */
3:
4: l_rowid VARCHAR2(25);
5: old_references gl_period_statuses%ROWTYPE;
6: new_references gl_period_statuses%ROWTYPE;
7:
8: PROCEDURE insert_row (
9: x_rowid IN OUT NOCOPY VARCHAR2,
10: x_application_id IN NUMBER,

Line 36: || Purpose : Handles the INSERT DML logic for the table. Invokes the gl_period_statuses_pkg.insert_row

32: ) AS
33: /*
34: || Created By : [email protected]
35: || Created On : 05-NOV-2002
36: || Purpose : Handles the INSERT DML logic for the table. Invokes the gl_period_statuses_pkg.insert_row
37: || Known limitations, enhancements or remarks :
38: || Change History :
39: || Who When What
40: || (reverse chronological order - newest change first)

Line 70: gl_period_statuses_pkg.insert_row(X_Rowid => x_rowid ,

66: app_exception.raise_exception;
67: END IF;
68:
69: /*
70: gl_period_statuses_pkg.insert_row(X_Rowid => x_rowid ,
71: X_Application_Id => x_application_id ,
72: X_Set_Of_Books_Id => x_set_of_books_id ,
73: X_Period_Name => x_period_name ,
74: X_Last_Update_Date => x_last_update_date ,

Line 125: || Purpose : Handles the LOCK mechanism for the table. Invokes the gl_period_statuses_pkg.lock_row

121: ) AS
122: /*
123: || Created By : [email protected]
124: || Created On : 05-NOV-2002
125: || Purpose : Handles the LOCK mechanism for the table. Invokes the gl_period_statuses_pkg.lock_row
126: || Known limitations, enhancements or remarks :
127: || Change History :
128: || Who When What
129: || (reverse chronological order - newest change first)

Line 134: gl_period_statuses_pkg.lock_row(X_Rowid => x_rowid ,

130: */
131:
132: BEGIN
133: /*
134: gl_period_statuses_pkg.lock_row(X_Rowid => x_rowid ,
135: X_Application_Id => x_application_id ,
136: X_Set_Of_Books_Id => x_set_of_books_id ,
137: X_Period_Name => x_period_name ,
138: X_Closing_Status => x_closing_status ,

Line 186: || Purpose : Handles the UPDATE DML logic for the table. Invokes the gl_period_statuses_pkg.update_row

182: ) AS
183: /*
184: || Created By : [email protected]
185: || Created On : 05-NOV-2002
186: || Purpose : Handles the UPDATE DML logic for the table. Invokes the gl_period_statuses_pkg.update_row
187: || Known limitations, enhancements or remarks :
188: || Change History :
189: || Who When What
190: || (reverse chronological order - newest change first)

Line 219: gl_period_statuses_pkg.update_row(X_Rowid => x_rowid ,

215: app_exception.raise_exception;
216: END IF;
217:
218: /*
219: gl_period_statuses_pkg.update_row(X_Rowid => x_rowid ,
220: X_Application_Id => x_application_id ,
221: X_Ledger_Id => x_set_of_books_id,
222: X_Set_Of_Books_Id => x_set_of_books_id ,
223: X_Period_Name => x_period_name ,

Line 252: || Purpose : Handles the DELETE DML logic for the table. Invokes the gl_period_statuses_pkg.delete_row

248: ) AS
249: /*
250: || Created By : [email protected]
251: || Created On : 05-NOV-2002
252: || Purpose : Handles the DELETE DML logic for the table. Invokes the gl_period_statuses_pkg.delete_row
253: || Known limitations, enhancements or remarks :
254: || Change History :
255: || Who When What
256: || (reverse chronological order - newest change first)

Line 260: gl_period_statuses_pkg.Delete_Row(X_Rowid => x_rowid);

256: || (reverse chronological order - newest change first)
257: */
258: BEGIN
259: /*
260: gl_period_statuses_pkg.Delete_Row(X_Rowid => x_rowid);
261: */
262: null;
263: END delete_row;
264: