DBA Data[Home] [Help]

PACKAGE: APPS.PNT_COMP_SITE_PKG

Source


1 PACKAGE PNT_COMP_SITE_PKG AUTHID CURRENT_USER AS
2   -- $Header: PNTCSITS.pls 120.3 2005/09/09 01:12:07 appldev ship $
3 
4 PROCEDURE check_unique_company_role ( p_lease_role_type   IN VARCHAR2,
5                                       p_company_id        IN NUMBER,
6                                       p_company_site_id   IN NUMBER,
7                                       p_org_id            IN NUMBER default NULL
8                                     );
9 
10 
11 FUNCTION defined_address_format(p_addr_code IN VARCHAR2) RETURN BOOLEAN;
12 
13 PROCEDURE insert_row ( x_rowid                   IN OUT NOCOPY VARCHAR2,
14                        x_company_site_id         IN OUT NOCOPY NUMBER,
15                        x_last_update_date               DATE,
16                        x_last_updated_by                NUMBER,
17                        x_creation_date                  DATE,
18                        x_created_by                     NUMBER,
19                        x_last_update_login              NUMBER,
20                        x_name                           VARCHAR2,
21                        x_company_id                     NUMBER,
22                        x_enabled_flag                   VARCHAR2,
23                        x_company_site_code              VARCHAR2,
24                        x_address_id              IN OUT NOCOPY NUMBER,
25                        x_lease_role_type                VARCHAR2,
26                        x_attribute_category             VARCHAR2,
27                        x_attribute1                     VARCHAR2,
28                        x_attribute2                     VARCHAR2,
29                        x_attribute3                     VARCHAR2,
30                        x_attribute4                     VARCHAR2,
31                        x_attribute5                     VARCHAR2,
32                        x_attribute6                     VARCHAR2,
33                        x_attribute7                     VARCHAR2,
34                        x_attribute8                     VARCHAR2,
35                        x_attribute9                     VARCHAR2,
36                        x_attribute10                    VARCHAR2,
37                        x_attribute11                    VARCHAR2,
38                        x_attribute12                    VARCHAR2,
39                        x_attribute13                    VARCHAR2,
40                        x_attribute14                    VARCHAR2,
41                        x_attribute15                    VARCHAR2,
42                        x_address_line1                  VARCHAR2,
43                        x_address_line2                  VARCHAR2,
44                        x_address_line3                  VARCHAR2,
45                        x_address_line4                  VARCHAR2,
46                        x_county                         VARCHAR2,
47                        x_city                           VARCHAR2,
48                        x_state                          VARCHAR2,
49                        x_province                       VARCHAR2,
50                        x_zip_code                       VARCHAR2,
51                        x_country                        VARCHAR2,
52                        x_territory_id                   NUMBER,
53                        x_addr_last_update_date          DATE,
54                        x_addr_last_updated_by           NUMBER,
55                        x_addr_creation_date             DATE,
56                        x_addr_created_by                NUMBER,
57                        x_addr_last_update_login         NUMBER,
58                        x_addr_attribute_category        VARCHAR2,
59                        x_addr_attribute1                VARCHAR2,
60                        x_addr_attribute2                VARCHAR2,
61                        x_addr_attribute3                VARCHAR2,
62                        x_addr_attribute4                VARCHAR2,
63                        x_addr_attribute5                VARCHAR2,
64                        x_addr_attribute6                VARCHAR2,
65                        x_addr_attribute7                VARCHAR2,
66                        x_addr_attribute8                VARCHAR2,
67                        x_addr_attribute9                VARCHAR2,
68                        x_addr_attribute10               VARCHAR2,
69                        x_addr_attribute11               VARCHAR2,
70                        x_addr_attribute12               VARCHAR2,
71                        x_addr_attribute13               VARCHAR2,
72                        x_addr_attribute14               VARCHAR2,
73                        x_addr_attribute15               VARCHAR2,
74                        x_org_id                         NUMBER
75                      );
76 
77 PROCEDURE update_row ( x_rowid                          VARCHAR2,
78                        x_company_id                     NUMBER,
79                        x_company_site_id                NUMBER,
80                        x_last_update_date               DATE,
81                        x_last_updated_by                NUMBER,
82                        x_last_update_login              NUMBER,
83                        x_name                           VARCHAR2,
84                        x_enabled_flag                   VARCHAR2,
85                        x_company_site_code              VARCHAR2,
86                        x_lease_role_type                VARCHAR2,
87                        x_attribute_category             VARCHAR2,
88                        x_attribute1                     VARCHAR2,
89                        x_attribute2                     VARCHAR2,
90                        x_attribute3                     VARCHAR2,
91                        x_attribute4                     VARCHAR2,
92                        x_attribute5                     VARCHAR2,
93                        x_attribute6                     VARCHAR2,
94                        x_attribute7                     VARCHAR2,
95                        x_attribute8                     VARCHAR2,
96                        x_attribute9                     VARCHAR2,
97                        x_attribute10                    VARCHAR2,
98                        x_attribute11                    VARCHAR2,
99                        x_attribute12                    VARCHAR2,
100                        x_attribute13                    VARCHAR2,
101                        x_attribute14                    VARCHAR2,
102                        x_attribute15                    VARCHAR2,
103                        x_address_id                     NUMBER,
104                        x_address_line1                  VARCHAR2,
105                        x_address_line2                  VARCHAR2,
106                        x_address_line3                  VARCHAR2,
107                        x_address_line4                  VARCHAR2,
108                        x_county                         VARCHAR2,
109                        x_city                           VARCHAR2,
110                        x_state                          VARCHAR2,
111                        x_province                       VARCHAR2,
112                        x_zip_code                       VARCHAR2,
113                        x_country                        VARCHAR2,
114                        x_territory_id                   NUMBER,
115                        x_addr_last_update_date          DATE,
116                        x_addr_last_updated_by           NUMBER,
117                        x_addr_last_update_login         NUMBER,
118                        x_addr_attribute_category        VARCHAR2,
119                        x_addr_attribute1                VARCHAR2,
120                        x_addr_attribute2                VARCHAR2,
121                        x_addr_attribute3                VARCHAR2,
122                        x_addr_attribute4                VARCHAR2,
123                        x_addr_attribute5                VARCHAR2,
124                        x_addr_attribute6                VARCHAR2,
125                        x_addr_attribute7                VARCHAR2,
126                        x_addr_attribute8                VARCHAR2,
127                        x_addr_attribute9                VARCHAR2,
128                        x_addr_attribute10               VARCHAR2,
129                        x_addr_attribute11               VARCHAR2,
130                        x_addr_attribute12               VARCHAR2,
131                        x_addr_attribute13               VARCHAR2,
132                        x_addr_attribute14               VARCHAR2,
133                        x_addr_attribute15               VARCHAR2
134                      );
135 
136 PROCEDURE lock_row   ( x_rowid                          VARCHAR2,
137                        x_company_site_id                NUMBER,
138                        x_name                           VARCHAR2,
139                        x_company_id                     NUMBER,
140                        x_enabled_flag                   VARCHAR2,
141                        x_company_site_code              VARCHAR2,
142                        x_address_id                     NUMBER,
143                        x_lease_role_type                VARCHAR2,
144                        x_attribute_category             VARCHAR2,
145                        x_attribute1                     VARCHAR2,
146                        x_attribute2                     VARCHAR2,
147                        x_attribute3                     VARCHAR2,
148                        x_attribute4                     VARCHAR2,
149                        x_attribute5                     VARCHAR2,
150                        x_attribute6                     VARCHAR2,
151                        x_attribute7                     VARCHAR2,
152                        x_attribute8                     VARCHAR2,
153                        x_attribute9                     VARCHAR2,
154                        x_attribute10                    VARCHAR2,
155                        x_attribute11                    VARCHAR2,
156                        x_attribute12                    VARCHAR2,
157                        x_attribute13                    VARCHAR2,
158                        x_attribute14                    VARCHAR2,
159                        x_attribute15                    VARCHAR2,
160                        x_address_line1                  VARCHAR2,
161                        x_address_line2                  VARCHAR2,
162                        x_address_line3                  VARCHAR2,
163                        x_address_line4                  VARCHAR2,
164                        x_county                         VARCHAR2,
165                        x_city                           VARCHAR2,
166                        x_state                          VARCHAR2,
167                        x_province                       VARCHAR2,
168                        x_zip_code                       VARCHAR2,
169                        x_country                        VARCHAR2,
170                        x_territory_id                   NUMBER,
171                        x_addr_attribute_category        VARCHAR2,
172                        x_addr_attribute1                VARCHAR2,
173                        x_addr_attribute2                VARCHAR2,
174                        x_addr_attribute3                VARCHAR2,
175                        x_addr_attribute4                VARCHAR2,
176                        x_addr_attribute5                VARCHAR2,
177                        x_addr_attribute6                VARCHAR2,
178                        x_addr_attribute7                VARCHAR2,
179                        x_addr_attribute8                VARCHAR2,
180                        x_addr_attribute9                VARCHAR2,
181                        x_addr_attribute10               VARCHAR2,
182                        x_addr_attribute11               VARCHAR2,
183                        x_addr_attribute12               VARCHAR2,
184                        x_addr_attribute13               VARCHAR2,
185                        x_addr_attribute14               VARCHAR2,
186                        x_addr_attribute15               VARCHAR2
187                      );
188 END PNT_COMP_SITE_PKG;