DBA Data[Home] [Help]

PACKAGE: APPS.GL_AUTOREVERSE_OPTIONS_PKG

Source


1 PACKAGE GL_AUTOREVERSE_OPTIONS_PKG as
2 /* $Header: glistars.pls 120.6 2003/09/22 17:03:34 spala ship $ */
3 
4   PROCEDURE Lock_Row(X_Rowid                            VARCHAR2,
5                      X_Criteria_Set_Id                  NUMBER,
6                      X_Je_Category_Name                 VARCHAR2,
7                      X_Method_Code                      VARCHAR2,
8                      X_Reversal_Period_Code             VARCHAR2,
9                      X_Reversal_Date_Code               VARCHAR2,
10                      X_Autoreverse_Flag                 VARCHAR2,
11                      X_Autopost_Reversal_Flag           VARCHAR2,
12                      X_Attribute1                       VARCHAR2,
13                      X_Attribute2                       VARCHAR2,
14                      X_Attribute3                       VARCHAR2,
15                      X_Attribute4                       VARCHAR2,
16                      X_Attribute5                       VARCHAR2,
17                      X_Attribute6                       VARCHAR2,
18                      X_Attribute7                       VARCHAR2,
19                      X_Attribute8                       VARCHAR2,
20                      X_Attribute9                       VARCHAR2,
21                      X_Attribute10                      VARCHAR2,
22                      X_Attribute11                      VARCHAR2,
23                      X_Attribute12                      VARCHAR2,
24                      X_Attribute13                      VARCHAR2,
25                      X_Attribute14                      VARCHAR2,
26                      X_Attribute15                      VARCHAR2,
27                      X_Context                          VARCHAR2
28                     );
29 
30 
31   PROCEDURE Update_Row(X_Rowid                          VARCHAR2,
32                        X_Criteria_Set_Id                NUMBER,
33                        X_Je_Category_Name               VARCHAR2,
34                        X_Method_Code                    VARCHAR2,
35                        X_Reversal_Period_Code           VARCHAR2,
36                        X_Reversal_Date_Code             VARCHAR2,
37                        X_Autoreverse_Flag               VARCHAR2,
38                        X_Autopost_Reversal_Flag         VARCHAR2,
39                        X_Last_Update_Date               DATE,
40                        X_Last_Updated_By                NUMBER,
41                        X_Last_Update_Login              NUMBER,
42                        X_Attribute1                     VARCHAR2,
43                        X_Attribute2                     VARCHAR2,
44                        X_Attribute3                     VARCHAR2,
45                        X_Attribute4                     VARCHAR2,
46                        X_Attribute5                     VARCHAR2,
47                        X_Attribute6                     VARCHAR2,
48                        X_Attribute7                     VARCHAR2,
49                        X_Attribute8                     VARCHAR2,
50                        X_Attribute9                     VARCHAR2,
51                        X_Attribute10                    VARCHAR2,
52                        X_Attribute11                    VARCHAR2,
53                        X_Attribute12                    VARCHAR2,
54                        X_Attribute13                    VARCHAR2,
55                        X_Attribute14                    VARCHAR2,
56                        X_Attribute15                    VARCHAR2,
57                        X_Context                        VARCHAR2
58                       );
59 
60   -- Procedure
61   --   insert_reversal_cat
62   -- Purpose
63   --   insert a row for each new journal category created in the Journal
64   --   Category form.
65   -- Access
66   --   Called from the Journal Category form API
67   --      GL_JE_CATEGORIES_PKG.insert_other_cat
68 
69   PROCEDURE insert_reversal_cat( x_je_category_name       VARCHAR2,
70                                  x_created_by             NUMBER,
71                                  x_last_updated_by        NUMBER,
72                                  x_last_update_login      NUMBER );
73 
74   -- Procedure
75   --   insert_criteria_reversal_cat
76   -- Purpose
77   --   Insert a row for each journal category when a new ledger
78   --   is created.
79   -- Access
80   --   Called from the Define Ledger form API
81   --      GL_LEDGERS_PKG.Insert_Row
82 
83   PROCEDURE insert_criteria_reversal_cat(
84 					x_criteria_set_id              NUMBER,
85                                         x_created_by             NUMBER,
86                                         x_last_updated_by        NUMBER,
87                                         x_last_update_login      NUMBER );
88 
89 
90 END GL_AUTOREVERSE_OPTIONS_PKG;