DBA Data[Home] [Help]

PACKAGE: APPS.GL_CONC_CONTROL_PKG

Source


1 PACKAGE GL_CONC_CONTROL_PKG AUTHID CURRENT_USER AS
2 /*  $Header: glicurcs.pls 120.2 2003/04/24 01:28:06 djogg ship $ */
3 --
4 -- Package
5 --   GL_CONC_CONTROL_PKG
6 -- Purpose
7 --   To create GL_CONC_CONTROL_PKG package.
8 -- History
9 --   12.01.93   E. Rumanang   Created
10 --
11 
12   --
13   -- Procedure
14   --   insert_conc_ledger
15   -- Purpose
16   --   Insert rows into GL_CONCURRENCY_CONTROL table for the new
17   --   created ledger.
18   -- History
19   --   12.01.93   E. Rumanang   Created
20   -- Arguments
21   --   x_ledger_id          The id of the new ledger.
22   --   x_last_update_date	The who's last_update_date.
23   --   x_last_updated_by	The who's last_updated_by.
24   --   x_creation_date		The who's creation_date.
25   --   x_created_by		The who's created_by.
26   --   x_last_update_login	The who's last_update_login.
27   -- Example
28   --   GL_CONC_CONTROL_PKG.insert_conc_ledger(
29   --     :block.ledger_id, :block.last_update_date,
30   --     :block.last_updated_by, :block.creation_date,
31   --     :block.created_by, :block.last_update_login );
32   -- Notes
33   --
34   PROCEDURE insert_conc_ledger(
35     x_ledger_id                 NUMBER,
36     x_last_update_date          DATE,
37     x_last_updated_by           NUMBER,
38     x_creation_date             DATE,
39     x_created_by                NUMBER,
40     x_last_update_login         NUMBER );
41 
42 
43   --
44   -- Procedure
45   --   insert_conc_subs
46   -- Purpose
47   --   Insert rows into GL_CONCURRENCY_CONTROL table for the new
48   --   created subsidiaries.
49   -- History
50   --   12.04.96   M. Demirkol   Created
51   -- Arguments
52   --   x_subsidiary_id		The id of the new subsidiary.
53   --   x_last_update_date	The who's last_update_date.
54   --   x_last_updated_by	The who's last_updated_by.
55   --   x_creation_date		The who's creation_date.
56   --   x_created_by		The who's created_by.
57   --   x_last_update_login	The who's last_update_login.
58   -- Example
59   --   GL_CONC_CONTROL_PKG.insert_conc_subs(
60   --     :block.subsidiary_id, :block.last_update_date,
61   --     :block.last_updated_by, :block.creation_date,
62   --     :block.created_by, :block.last_update_login );
63   -- Notes
64   --
65   PROCEDURE insert_conc_subs(
66     x_subsidiary_id             NUMBER,
67     x_last_update_date          DATE,
68     x_last_updated_by           NUMBER,
69     x_creation_date             DATE,
70     x_created_by                NUMBER,
71     x_last_update_login         NUMBER );
72 
73 
74 END GL_CONC_CONTROL_PKG;