DBA Data[Home] [Help]

PACKAGE: APPS.PAY_ELE_CLASS_RULES_PKG

Source


1 PACKAGE PAY_ELE_CLASS_RULES_PKG AUTHID CURRENT_USER as
2 /* $Header: pyecr01t.pkh 115.1 2002/12/16 17:45:43 dsaxby ship $ */
3 --
4  /*==========================================================================+
5  |               Copyright (c) 1993 Oracle Corporation                       |
6  |                  Redwood Shores, California, USA                          |
7  |                       All rights reserved.                                |
8  +===========================================================================+
9   Name
10     pay_ele_class_rules_pkg
11   Purpose
12     Supports the ECR block in the form PAYWSDRP (Define Element and
13     Distributuion Set.
14   Notes
15 
16   History
17     24-Mar-94  J.S.Hobbs   40.0         Date created.
18  ============================================================================*/
19 --
20  -----------------------------------------------------------------------------
21  -- Name                                                                    --
22  --   Insert_Row                                                            --
23  -- Purpose                                                                 --
24  --   Table handler procedure that supports the insert of a classification  --
25  --   rule via the Define Element and Distributuion Set form.               --
26  -- Arguments                                                               --
27  --   See below.                                                            --
28  -- Notes                                                                   --
29  -----------------------------------------------------------------------------
30 --
31  PROCEDURE Insert_Row(X_Rowid                        IN OUT NOCOPY VARCHAR2,
32                       X_Element_Set_Id               IN OUT NOCOPY NUMBER,
33                       X_Classification_Id                          NUMBER,
34                       -- Extra Columns
35                       X_Element_Set_Type                    VARCHAR2);
36 --
37  -----------------------------------------------------------------------------
38  -- Name                                                                    --
39  --   Lock_Row                                                              --
40  -- Purpose                                                                 --
41  --   Table handler procedure that supports the insert , update and delete  --
42  --   of a classification rule by applying a lock on a classification rule  --
43  --   within the Define Element and Distribution Set form.                  --
44  -- Arguments                                                               --
45  --   See below.                                                            --
46  -- Notes                                                                   --
47  --   None.                                                                 --
48  -----------------------------------------------------------------------------
49 --
50  PROCEDURE Lock_Row(X_Rowid                                 VARCHAR2,
51                     X_Element_Set_Id                        NUMBER,
52                     X_Classification_Id                     NUMBER);
53 --
54  -----------------------------------------------------------------------------
55  -- Name                                                                    --
56  --   Update_Row                                                            --
57  -- Purpose                                                                 --
58  --   Table handler procedure that supports the update of a classification  --
59  --   rule via the Define Element and Distributuion Set form.               --
60  -- Arguments                                                               --
61  --   See below.                                                            --
62  -- Notes                                                                   --
63  -----------------------------------------------------------------------------
64 --
65  PROCEDURE Update_Row(X_Rowid                               VARCHAR2,
66                       X_Element_Set_Id                      NUMBER,
67                       X_Classification_Id                   NUMBER);
68 --
69  -----------------------------------------------------------------------------
70  -- Name                                                                    --
71  --   Delete_Row                                                            --
72  -- Purpose                                                                 --
73  --   Table handler procedure that supports the delete of a classification  --
74  --   rule via the Define Element and Distributuion Set form.               --
75  -- Arguments                                                               --
76  --   See below.                                                            --
77  -- Notes                                                                   --
78  -----------------------------------------------------------------------------
79 --
80  PROCEDURE Delete_Row(X_Rowid                               VARCHAR2,
81 		      -- Extra Columns
82                       X_Element_Set_Id                      NUMBER,
83                       X_Classification_Id                   NUMBER);
84 --
85 END PAY_ELE_CLASS_RULES_PKG;