DBA Data[Home] [Help]

PACKAGE: APPS.HZ_LOCATIONS_PKG

Source


1 PACKAGE hz_locations_pkg AUTHID CURRENT_USER AS
2 /*$Header: ARHLOCTS.pls 120.2 2004/01/12 19:26:38 anukumar ship $ */
3 
4   PROCEDURE insert_row (
5     x_location_id                           IN OUT NOCOPY NUMBER,
6     x_attribute_category                    IN     VARCHAR2,
7     x_attribute1                            IN     VARCHAR2,
8     x_attribute2                            IN     VARCHAR2,
9     x_attribute3                            IN     VARCHAR2,
10     x_attribute4                            IN     VARCHAR2,
11     x_attribute5                            IN     VARCHAR2,
12     x_attribute6                            IN     VARCHAR2,
13     x_attribute7                            IN     VARCHAR2,
14     x_attribute8                            IN     VARCHAR2,
15     x_attribute9                            IN     VARCHAR2,
16     x_attribute10                           IN     VARCHAR2,
17     x_attribute11                           IN     VARCHAR2,
18     x_attribute12                           IN     VARCHAR2,
19     x_attribute13                           IN     VARCHAR2,
20     x_attribute14                           IN     VARCHAR2,
21     x_attribute15                           IN     VARCHAR2,
22     x_attribute16                           IN     VARCHAR2,
23     x_attribute17                           IN     VARCHAR2,
24     x_attribute18                           IN     VARCHAR2,
25     x_attribute19                           IN     VARCHAR2,
26     x_attribute20                           IN     VARCHAR2,
27     x_orig_system_reference                 IN     VARCHAR2,
28     x_country                               IN     VARCHAR2,
29     x_address1                              IN     VARCHAR2,
30     x_address2                              IN     VARCHAR2,
31     x_address3                              IN     VARCHAR2,
32     x_address4                              IN     VARCHAR2,
33     x_city                                  IN     VARCHAR2,
34     x_postal_code                           IN     VARCHAR2,
35     x_state                                 IN     VARCHAR2,
36     x_province                              IN     VARCHAR2,
37     x_county                                IN     VARCHAR2,
38     x_address_key                           IN     VARCHAR2,
39     x_address_style                         IN     VARCHAR2,
40     x_validated_flag                        IN     VARCHAR2,
41     x_address_lines_phonetic                IN     VARCHAR2,
42     x_po_box_number                         IN     VARCHAR2,
43     x_house_number                          IN     VARCHAR2,
44     x_street_suffix                         IN     VARCHAR2,
45     x_street                                IN     VARCHAR2,
46     x_street_number                         IN     VARCHAR2,
47     x_floor                                 IN     VARCHAR2,
48     x_suite                                 IN     VARCHAR2,
49     x_postal_plus4_code                     IN     VARCHAR2,
50     x_position                              IN     VARCHAR2,
51     x_location_directions                   IN     VARCHAR2,
52     x_address_effective_date                IN     DATE,
53     x_address_expiration_date               IN     DATE,
54     x_clli_code                             IN     VARCHAR2,
55     x_language                              IN     VARCHAR2,
56     x_short_description                     IN     VARCHAR2,
57     x_description                           IN     VARCHAR2,
58     x_content_source_type                   IN     VARCHAR2,
59     x_loc_hierarchy_id                      IN     NUMBER,
60     x_sales_tax_geocode                     IN     VARCHAR2,
61     x_sales_tax_inside_city_limits          IN     VARCHAR2,
62     x_fa_location_id                        IN     NUMBER,
63     x_geometry                              IN     mdsys.sdo_geometry,
64     x_object_version_number                 IN     NUMBER,
65     x_timezone_id                           IN     NUMBER,
66     x_created_by_module                     IN     VARCHAR2,
67     x_application_id                        IN     NUMBER,
68     x_actual_content_source                 IN     VARCHAR2,
69     x_geometry_status_code                  IN     VARCHAR2 DEFAULT NULL,
70     -- Bug 2670546
71     x_delivery_point_code                   IN     VARCHAR2
72   );
73 
74   PROCEDURE update_row (
75     x_rowid                                 IN OUT NOCOPY VARCHAR2,
76     x_location_id                           IN     NUMBER,
77     x_attribute_category                    IN     VARCHAR2,
78     x_attribute1                            IN     VARCHAR2,
79     x_attribute2                            IN     VARCHAR2,
80     x_attribute3                            IN     VARCHAR2,
81     x_attribute4                            IN     VARCHAR2,
82     x_attribute5                            IN     VARCHAR2,
83     x_attribute6                            IN     VARCHAR2,
84     x_attribute7                            IN     VARCHAR2,
85     x_attribute8                            IN     VARCHAR2,
86     x_attribute9                            IN     VARCHAR2,
87     x_attribute10                           IN     VARCHAR2,
88     x_attribute11                           IN     VARCHAR2,
89     x_attribute12                           IN     VARCHAR2,
90     x_attribute13                           IN     VARCHAR2,
91     x_attribute14                           IN     VARCHAR2,
92     x_attribute15                           IN     VARCHAR2,
93     x_attribute16                           IN     VARCHAR2,
94     x_attribute17                           IN     VARCHAR2,
95     x_attribute18                           IN     VARCHAR2,
96     x_attribute19                           IN     VARCHAR2,
97     x_attribute20                           IN     VARCHAR2,
98     x_orig_system_reference                 IN     VARCHAR2,
99     x_country                               IN     VARCHAR2,
100     x_address1                              IN     VARCHAR2,
101     x_address2                              IN     VARCHAR2,
102     x_address3                              IN     VARCHAR2,
103     x_address4                              IN     VARCHAR2,
104     x_city                                  IN     VARCHAR2,
105     x_postal_code                           IN     VARCHAR2,
106     x_state                                 IN     VARCHAR2,
107     x_province                              IN     VARCHAR2,
108     x_county                                IN     VARCHAR2,
109     x_address_key                           IN     VARCHAR2,
110     x_address_style                         IN     VARCHAR2,
111     x_validated_flag                        IN     VARCHAR2,
112     x_address_lines_phonetic                IN     VARCHAR2,
113     x_po_box_number                         IN     VARCHAR2,
114     x_house_number                          IN     VARCHAR2,
115     x_street_suffix                         IN     VARCHAR2,
116     x_street                                IN     VARCHAR2,
117     x_street_number                         IN     VARCHAR2,
118     x_floor                                 IN     VARCHAR2,
119     x_suite                                 IN     VARCHAR2,
120     x_postal_plus4_code                     IN     VARCHAR2,
121     x_position                              IN     VARCHAR2,
122     x_location_directions                   IN     VARCHAR2,
123     x_address_effective_date                IN     DATE,
124     x_address_expiration_date               IN     DATE,
125     x_clli_code                             IN     VARCHAR2,
126     x_language                              IN     VARCHAR2,
127     x_short_description                     IN     VARCHAR2,
128     x_description                           IN     VARCHAR2,
129     x_content_source_type                   IN     VARCHAR2,
130     x_loc_hierarchy_id                      IN     NUMBER,
131     x_sales_tax_geocode                     IN     VARCHAR2,
132     x_sales_tax_inside_city_limits          IN     VARCHAR2,
133     x_fa_location_id                        IN     NUMBER,
134     x_geometry                              IN     mdsys.sdo_geometry,
135     x_object_version_number                 IN     NUMBER,
136     x_timezone_id                           IN     NUMBER,
137     x_created_by_module                     IN     VARCHAR2,
138     x_application_id                        IN     NUMBER,
139     x_actual_content_source                 IN     VARCHAR2 DEFAULT NULL,
140     x_geometry_status_code                  IN     VARCHAR2 DEFAULT NULL,
141     -- Bug 2670546
142     x_delivery_point_code                   IN     VARCHAR2
143   );
144 
145   PROCEDURE lock_row (
146     x_rowid                                 IN OUT NOCOPY VARCHAR2,
147     x_location_id                           IN     NUMBER,
148     x_last_update_date                      IN     DATE,
149     x_last_updated_by                       IN     NUMBER,
150     x_creation_date                         IN     DATE,
151     x_created_by                            IN     NUMBER,
152     x_last_update_login                     IN     NUMBER,
153     x_request_id                            IN     NUMBER,
154     x_program_application_id                IN     NUMBER,
155     x_program_id                            IN     NUMBER,
156     x_program_update_date                   IN     DATE,
157     x_attribute_category                    IN     VARCHAR2,
158     x_attribute1                            IN     VARCHAR2,
159     x_attribute2                            IN     VARCHAR2,
160     x_attribute3                            IN     VARCHAR2,
161     x_attribute4                            IN     VARCHAR2,
162     x_attribute5                            IN     VARCHAR2,
163     x_attribute6                            IN     VARCHAR2,
164     x_attribute7                            IN     VARCHAR2,
165     x_attribute8                            IN     VARCHAR2,
166     x_attribute9                            IN     VARCHAR2,
167     x_attribute10                           IN     VARCHAR2,
168     x_attribute11                           IN     VARCHAR2,
169     x_attribute12                           IN     VARCHAR2,
170     x_attribute13                           IN     VARCHAR2,
171     x_attribute14                           IN     VARCHAR2,
172     x_attribute15                           IN     VARCHAR2,
173     x_attribute16                           IN     VARCHAR2,
174     x_attribute17                           IN     VARCHAR2,
175     x_attribute18                           IN     VARCHAR2,
176     x_attribute19                           IN     VARCHAR2,
177     x_attribute20                           IN     VARCHAR2,
178     x_orig_system_reference                 IN     VARCHAR2,
179     x_country                               IN     VARCHAR2,
180     x_address1                              IN     VARCHAR2,
181     x_address2                              IN     VARCHAR2,
182     x_address3                              IN     VARCHAR2,
183     x_address4                              IN     VARCHAR2,
184     x_city                                  IN     VARCHAR2,
185     x_postal_code                           IN     VARCHAR2,
186     x_state                                 IN     VARCHAR2,
187     x_province                              IN     VARCHAR2,
188     x_county                                IN     VARCHAR2,
189     x_address_key                           IN     VARCHAR2,
190     x_address_style                         IN     VARCHAR2,
191     x_validated_flag                        IN     VARCHAR2,
192     x_address_lines_phonetic                IN     VARCHAR2,
193     x_po_box_number                         IN     VARCHAR2,
194     x_house_number                          IN     VARCHAR2,
195     x_street_suffix                         IN     VARCHAR2,
196     x_street                                IN     VARCHAR2,
197     x_street_number                         IN     VARCHAR2,
198     x_floor                                 IN     VARCHAR2,
199     x_suite                                 IN     VARCHAR2,
200     x_postal_plus4_code                     IN     VARCHAR2,
201     x_position                              IN     VARCHAR2,
202     x_location_directions                   IN     VARCHAR2,
203     x_address_effective_date                IN     DATE,
204     x_address_expiration_date               IN     DATE,
205     x_clli_code                             IN     VARCHAR2,
206     x_language                              IN     VARCHAR2,
207     x_short_description                     IN     VARCHAR2,
208     x_description                           IN     VARCHAR2,
209     x_content_source_type                   IN     VARCHAR2,
210     x_loc_hierarchy_id                      IN     NUMBER,
211     x_sales_tax_geocode                     IN     VARCHAR2,
212     x_sales_tax_inside_city_limits          IN     VARCHAR2,
213     x_fa_location_id                        IN     NUMBER,
214     x_geometry                              IN     mdsys.sdo_geometry,
215     x_object_version_number                 IN     NUMBER,
216     x_timezone_id                           IN     NUMBER,
217     x_created_by_module                     IN     VARCHAR2,
218     x_application_id                        IN     NUMBER,
219     x_actual_content_source                 IN     VARCHAR2 DEFAULT NULL,
220     x_geometry_status_code                  IN     VARCHAR2 DEFAULT NULL,
221     -- Bug 2670546
222     x_delivery_point_code                   IN     VARCHAR2
223   );
224 
225   PROCEDURE select_row (
226     x_location_id                           IN OUT NOCOPY NUMBER,
227     x_attribute_category                    OUT NOCOPY    VARCHAR2,
228     x_attribute1                            OUT NOCOPY    VARCHAR2,
229     x_attribute2                            OUT NOCOPY    VARCHAR2,
230     x_attribute3                            OUT NOCOPY    VARCHAR2,
231     x_attribute4                            OUT NOCOPY    VARCHAR2,
232     x_attribute5                            OUT NOCOPY    VARCHAR2,
233     x_attribute6                            OUT NOCOPY    VARCHAR2,
234     x_attribute7                            OUT NOCOPY    VARCHAR2,
235     x_attribute8                            OUT NOCOPY    VARCHAR2,
236     x_attribute9                            OUT NOCOPY    VARCHAR2,
237     x_attribute10                           OUT NOCOPY    VARCHAR2,
238     x_attribute11                           OUT NOCOPY    VARCHAR2,
239     x_attribute12                           OUT NOCOPY    VARCHAR2,
240     x_attribute13                           OUT NOCOPY    VARCHAR2,
241     x_attribute14                           OUT NOCOPY    VARCHAR2,
242     x_attribute15                           OUT NOCOPY    VARCHAR2,
243     x_attribute16                           OUT NOCOPY    VARCHAR2,
244     x_attribute17                           OUT NOCOPY    VARCHAR2,
245     x_attribute18                           OUT NOCOPY    VARCHAR2,
246     x_attribute19                           OUT NOCOPY    VARCHAR2,
247     x_attribute20                           OUT NOCOPY    VARCHAR2,
248     x_orig_system_reference                 OUT NOCOPY    VARCHAR2,
249     x_country                               OUT NOCOPY    VARCHAR2,
250     x_address1                              OUT NOCOPY    VARCHAR2,
251     x_address2                              OUT NOCOPY    VARCHAR2,
252     x_address3                              OUT NOCOPY    VARCHAR2,
253     x_address4                              OUT NOCOPY    VARCHAR2,
254     x_city                                  OUT NOCOPY    VARCHAR2,
255     x_postal_code                           OUT NOCOPY    VARCHAR2,
256     x_state                                 OUT NOCOPY    VARCHAR2,
257     x_province                              OUT NOCOPY    VARCHAR2,
258     x_county                                OUT NOCOPY    VARCHAR2,
259     x_address_key                           OUT NOCOPY    VARCHAR2,
260     x_address_style                         OUT NOCOPY    VARCHAR2,
261     x_validated_flag                        OUT NOCOPY    VARCHAR2,
262     x_address_lines_phonetic                OUT NOCOPY    VARCHAR2,
263     x_po_box_number                         OUT NOCOPY    VARCHAR2,
264     x_house_number                          OUT NOCOPY    VARCHAR2,
265     x_street_suffix                         OUT NOCOPY    VARCHAR2,
266     x_street                                OUT NOCOPY    VARCHAR2,
267     x_street_number                         OUT NOCOPY    VARCHAR2,
268     x_floor                                 OUT NOCOPY    VARCHAR2,
269     x_suite                                 OUT NOCOPY    VARCHAR2,
270     x_postal_plus4_code                     OUT NOCOPY    VARCHAR2,
271     x_position                              OUT NOCOPY    VARCHAR2,
272     x_location_directions                   OUT NOCOPY    VARCHAR2,
273     x_address_effective_date                OUT NOCOPY    DATE,
274     x_address_expiration_date               OUT NOCOPY    DATE,
275     x_clli_code                             OUT NOCOPY    VARCHAR2,
276     x_language                              OUT NOCOPY    VARCHAR2,
277     x_short_description                     OUT NOCOPY    VARCHAR2,
281     x_sales_tax_geocode                     OUT NOCOPY    VARCHAR2,
278     x_description                           OUT NOCOPY    VARCHAR2,
279     x_content_source_type                   OUT NOCOPY    VARCHAR2,
280     x_loc_hierarchy_id                      OUT NOCOPY    NUMBER,
282     x_sales_tax_inside_city_limits          OUT NOCOPY    VARCHAR2,
283     x_fa_location_id                        OUT NOCOPY    NUMBER,
284     x_geometry                              OUT NOCOPY    mdsys.sdo_geometry,
285     x_timezone_id                           OUT NOCOPY    NUMBER,
286     x_created_by_module                     OUT NOCOPY    VARCHAR2,
287     x_application_id                        OUT NOCOPY    NUMBER,
288     x_actual_content_source                 OUT NOCOPY    VARCHAR2,
289     x_geometry_status_code                  OUT NOCOPY    VARCHAR2,
290     -- Bug 2670546
291     x_delivery_point_code                   OUT NOCOPY    VARCHAR2
292   );
293 
294   PROCEDURE delete_row (x_location_id IN NUMBER);
295 
296 END hz_locations_pkg;