DBA Data[Home] [Help]

PACKAGE: APPS.HZ_CONTACT_POINTS_PKG

Source


1 PACKAGE hz_contact_points_pkg AUTHID CURRENT_USER AS
2 /*$Header: ARHCPTTS.pls 115.9 2002/11/21 20:14:14 sponnamb ship $ */
3 
4   PROCEDURE insert_row (
5     x_contact_point_id                      IN OUT NOCOPY NUMBER,
6     x_contact_point_type                    IN     VARCHAR2,
7     x_status                                IN     VARCHAR2,
8     x_owner_table_name                      IN     VARCHAR2,
9     x_owner_table_id                        IN     NUMBER,
10     x_primary_flag                          IN     VARCHAR2,
11     x_orig_system_reference                 IN     VARCHAR2,
12     x_attribute_category                    IN     VARCHAR2,
13     x_attribute1                            IN     VARCHAR2,
14     x_attribute2                            IN     VARCHAR2,
15     x_attribute3                            IN     VARCHAR2,
16     x_attribute4                            IN     VARCHAR2,
17     x_attribute5                            IN     VARCHAR2,
18     x_attribute6                            IN     VARCHAR2,
19     x_attribute7                            IN     VARCHAR2,
20     x_attribute8                            IN     VARCHAR2,
21     x_attribute9                            IN     VARCHAR2,
22     x_attribute10                           IN     VARCHAR2,
23     x_attribute11                           IN     VARCHAR2,
24     x_attribute12                           IN     VARCHAR2,
25     x_attribute13                           IN     VARCHAR2,
26     x_attribute14                           IN     VARCHAR2,
27     x_attribute15                           IN     VARCHAR2,
28     x_attribute16                           IN     VARCHAR2,
29     x_attribute17                           IN     VARCHAR2,
30     x_attribute18                           IN     VARCHAR2,
31     x_attribute19                           IN     VARCHAR2,
32     x_attribute20                           IN     VARCHAR2,
33     x_edi_transaction_handling              IN     VARCHAR2,
34     x_edi_id_number                         IN     VARCHAR2,
35     x_edi_payment_method                    IN     VARCHAR2,
36     x_edi_payment_format                    IN     VARCHAR2,
37     x_edi_remittance_method                 IN     VARCHAR2,
38     x_edi_remittance_instruction            IN     VARCHAR2,
39     x_edi_tp_header_id                      IN     NUMBER,
40     x_edi_ece_tp_location_code              IN     VARCHAR2,
41     x_eft_transmission_program_id           IN     NUMBER,
42     x_eft_printing_program_id               IN     NUMBER,
43     x_eft_user_number                       IN     VARCHAR2,
44     x_eft_swift_code                        IN     VARCHAR2,
45     x_email_format                          IN     VARCHAR2,
46     x_email_address                         IN     VARCHAR2,
47     x_phone_calling_calendar                IN     VARCHAR2,
48     x_last_contact_dt_time                  IN     DATE,
49     x_timezone_id                           IN     NUMBER,
50     x_phone_area_code                       IN     VARCHAR2,
51     x_phone_country_code                    IN     VARCHAR2,
52     x_phone_number                          IN     VARCHAR2,
53     x_phone_extension                       IN     VARCHAR2,
54     x_phone_line_type                       IN     VARCHAR2,
55     x_telex_number                          IN     VARCHAR2,
56     x_web_type                              IN     VARCHAR2,
57     x_url                                   IN     VARCHAR2,
58     x_content_source_type                   IN     VARCHAR2,
59     x_raw_phone_number                      IN     VARCHAR2,
60     x_object_version_number                 IN     NUMBER,
61     x_contact_point_purpose                 IN     VARCHAR2,
62     x_primary_by_purpose                    IN     VARCHAR2,
63     x_created_by_module                     IN     VARCHAR2,
64     x_application_id                        IN     NUMBER,
65     x_transposed_phone_number               IN     VARCHAR2,
66     x_actual_content_source                 IN     VARCHAR2
67   );
68 
69   PROCEDURE update_row (
70     x_rowid                                 IN OUT NOCOPY VARCHAR2,
71     x_contact_point_id                      IN     NUMBER,
72     x_contact_point_type                    IN     VARCHAR2,
73     x_status                                IN     VARCHAR2,
74     x_owner_table_name                      IN     VARCHAR2,
75     x_owner_table_id                        IN     NUMBER,
76     x_primary_flag                          IN     VARCHAR2,
77     x_orig_system_reference                 IN     VARCHAR2,
78     x_attribute_category                    IN     VARCHAR2,
79     x_attribute1                            IN     VARCHAR2,
80     x_attribute2                            IN     VARCHAR2,
81     x_attribute3                            IN     VARCHAR2,
82     x_attribute4                            IN     VARCHAR2,
83     x_attribute5                            IN     VARCHAR2,
84     x_attribute6                            IN     VARCHAR2,
85     x_attribute7                            IN     VARCHAR2,
86     x_attribute8                            IN     VARCHAR2,
87     x_attribute9                            IN     VARCHAR2,
88     x_attribute10                           IN     VARCHAR2,
89     x_attribute11                           IN     VARCHAR2,
90     x_attribute12                           IN     VARCHAR2,
91     x_attribute13                           IN     VARCHAR2,
92     x_attribute14                           IN     VARCHAR2,
93     x_attribute15                           IN     VARCHAR2,
94     x_attribute16                           IN     VARCHAR2,
95     x_attribute17                           IN     VARCHAR2,
96     x_attribute18                           IN     VARCHAR2,
97     x_attribute19                           IN     VARCHAR2,
98     x_attribute20                           IN     VARCHAR2,
99     x_edi_transaction_handling              IN     VARCHAR2,
100     x_edi_id_number                         IN     VARCHAR2,
101     x_edi_payment_method                    IN     VARCHAR2,
102     x_edi_payment_format                    IN     VARCHAR2,
103     x_edi_remittance_method                 IN     VARCHAR2,
104     x_edi_remittance_instruction            IN     VARCHAR2,
105     x_edi_tp_header_id                      IN     NUMBER,
106     x_edi_ece_tp_location_code              IN     VARCHAR2,
107     x_eft_transmission_program_id           IN     NUMBER,
108     x_eft_printing_program_id               IN     NUMBER,
109     x_eft_user_number                       IN     VARCHAR2,
110     x_eft_swift_code                        IN     VARCHAR2,
111     x_email_format                          IN     VARCHAR2,
112     x_email_address                         IN     VARCHAR2,
113     x_phone_calling_calendar                IN     VARCHAR2,
114     x_last_contact_dt_time                  IN     DATE,
115     x_timezone_id                           IN     NUMBER,
116     x_phone_area_code                       IN     VARCHAR2,
117     x_phone_country_code                    IN     VARCHAR2,
118     x_phone_number                          IN     VARCHAR2,
119     x_phone_extension                       IN     VARCHAR2,
120     x_phone_line_type                       IN     VARCHAR2,
121     x_telex_number                          IN     VARCHAR2,
122     x_web_type                              IN     VARCHAR2,
123     x_url                                   IN     VARCHAR2,
124     x_content_source_type                   IN     VARCHAR2,
125     x_raw_phone_number                      IN     VARCHAR2,
126     x_object_version_number                 IN     NUMBER,
127     x_contact_point_purpose                 IN     VARCHAR2,
128     x_primary_by_purpose                    IN     VARCHAR2,
129     x_created_by_module                     IN     VARCHAR2,
130     x_application_id                        IN     NUMBER,
131     x_transposed_phone_number               IN     VARCHAR2,
132     x_actual_content_source                 IN     VARCHAR2 DEFAULT NULL
133   );
134 
135   PROCEDURE lock_row (
136     x_rowid                                 IN OUT NOCOPY VARCHAR2,
137     x_contact_point_id                      IN     NUMBER,
138     x_contact_point_type                    IN     VARCHAR2,
139     x_status                                IN     VARCHAR2,
140     x_owner_table_name                      IN     VARCHAR2,
141     x_owner_table_id                        IN     NUMBER,
142     x_primary_flag                          IN     VARCHAR2,
143     x_orig_system_reference                 IN     VARCHAR2,
144     x_last_update_date                      IN     DATE,
145     x_last_updated_by                       IN     NUMBER,
146     x_creation_date                         IN     DATE,
147     x_created_by                            IN     NUMBER,
148     x_last_update_login                     IN     NUMBER,
149     x_request_id                            IN     NUMBER,
150     x_program_application_id                IN     NUMBER,
151     x_program_id                            IN     NUMBER,
152     x_program_update_date                   IN     DATE,
153     x_attribute_category                    IN     VARCHAR2,
154     x_attribute1                            IN     VARCHAR2,
155     x_attribute2                            IN     VARCHAR2,
156     x_attribute3                            IN     VARCHAR2,
157     x_attribute4                            IN     VARCHAR2,
158     x_attribute5                            IN     VARCHAR2,
159     x_attribute6                            IN     VARCHAR2,
160     x_attribute7                            IN     VARCHAR2,
161     x_attribute8                            IN     VARCHAR2,
162     x_attribute9                            IN     VARCHAR2,
163     x_attribute10                           IN     VARCHAR2,
164     x_attribute11                           IN     VARCHAR2,
165     x_attribute12                           IN     VARCHAR2,
166     x_attribute13                           IN     VARCHAR2,
167     x_attribute14                           IN     VARCHAR2,
168     x_attribute15                           IN     VARCHAR2,
169     x_attribute16                           IN     VARCHAR2,
170     x_attribute17                           IN     VARCHAR2,
171     x_attribute18                           IN     VARCHAR2,
172     x_attribute19                           IN     VARCHAR2,
173     x_attribute20                           IN     VARCHAR2,
174     x_edi_transaction_handling              IN     VARCHAR2,
175     x_edi_id_number                         IN     VARCHAR2,
176     x_edi_payment_method                    IN     VARCHAR2,
177     x_edi_payment_format                    IN     VARCHAR2,
178     x_edi_remittance_method                 IN     VARCHAR2,
179     x_edi_remittance_instruction            IN     VARCHAR2,
180     x_edi_tp_header_id                      IN     NUMBER,
181     x_edi_ece_tp_location_code              IN     VARCHAR2,
182     x_eft_transmission_program_id           IN     NUMBER,
183     x_eft_printing_program_id               IN     NUMBER,
184     x_eft_user_number                       IN     VARCHAR2,
185     x_eft_swift_code                        IN     VARCHAR2,
186     x_email_format                          IN     VARCHAR2,
187     x_email_address                         IN     VARCHAR2,
188     x_phone_calling_calendar                IN     VARCHAR2,
189     x_last_contact_dt_time                  IN     DATE,
190     x_timezone_id                           IN     NUMBER,
191     x_phone_area_code                       IN     VARCHAR2,
192     x_phone_country_code                    IN     VARCHAR2,
193     x_phone_number                          IN     VARCHAR2,
194     x_phone_extension                       IN     VARCHAR2,
195     x_phone_line_type                       IN     VARCHAR2,
196     x_telex_number                          IN     VARCHAR2,
197     x_web_type                              IN     VARCHAR2,
198     x_url                                   IN     VARCHAR2,
199     x_content_source_type                   IN     VARCHAR2,
200     x_raw_phone_number                      IN     VARCHAR2,
201     x_object_version_number                 IN     NUMBER,
202     x_contact_point_purpose                 IN     VARCHAR2,
203     x_primary_by_purpose                    IN     VARCHAR2,
204     x_created_by_module                     IN     VARCHAR2,
205     x_application_id                        IN     NUMBER,
206     x_transposed_phone_number               IN     VARCHAR2,
207     x_actual_content_source                 IN     VARCHAR2 DEFAULT NULL
208   );
209 
210   PROCEDURE select_row (
211     x_contact_point_id                      IN OUT NOCOPY NUMBER,
215     x_owner_table_id                        OUT NOCOPY    NUMBER,
212     x_contact_point_type                    OUT NOCOPY    VARCHAR2,
213     x_status                                OUT NOCOPY    VARCHAR2,
214     x_owner_table_name                      OUT NOCOPY    VARCHAR2,
216     x_primary_flag                          OUT NOCOPY    VARCHAR2,
217     x_orig_system_reference                 OUT NOCOPY    VARCHAR2,
218     x_attribute_category                    OUT NOCOPY    VARCHAR2,
219     x_attribute1                            OUT NOCOPY    VARCHAR2,
220     x_attribute2                            OUT NOCOPY    VARCHAR2,
221     x_attribute3                            OUT NOCOPY    VARCHAR2,
222     x_attribute4                            OUT NOCOPY    VARCHAR2,
223     x_attribute5                            OUT NOCOPY    VARCHAR2,
224     x_attribute6                            OUT NOCOPY    VARCHAR2,
225     x_attribute7                            OUT NOCOPY    VARCHAR2,
226     x_attribute8                            OUT NOCOPY    VARCHAR2,
227     x_attribute9                            OUT NOCOPY    VARCHAR2,
228     x_attribute10                           OUT NOCOPY    VARCHAR2,
229     x_attribute11                           OUT NOCOPY    VARCHAR2,
230     x_attribute12                           OUT NOCOPY    VARCHAR2,
231     x_attribute13                           OUT NOCOPY    VARCHAR2,
232     x_attribute14                           OUT NOCOPY    VARCHAR2,
233     x_attribute15                           OUT NOCOPY    VARCHAR2,
234     x_attribute16                           OUT NOCOPY    VARCHAR2,
235     x_attribute17                           OUT NOCOPY    VARCHAR2,
236     x_attribute18                           OUT NOCOPY    VARCHAR2,
237     x_attribute19                           OUT NOCOPY    VARCHAR2,
238     x_attribute20                           OUT NOCOPY    VARCHAR2,
239     x_edi_transaction_handling              OUT NOCOPY    VARCHAR2,
240     x_edi_id_number                         OUT NOCOPY    VARCHAR2,
241     x_edi_payment_method                    OUT NOCOPY    VARCHAR2,
242     x_edi_payment_format                    OUT NOCOPY    VARCHAR2,
243     x_edi_remittance_method                 OUT NOCOPY    VARCHAR2,
244     x_edi_remittance_instruction            OUT NOCOPY    VARCHAR2,
245     x_edi_tp_header_id                      OUT NOCOPY    NUMBER,
246     x_edi_ece_tp_location_code              OUT NOCOPY    VARCHAR2,
247     x_eft_transmission_program_id           OUT NOCOPY    NUMBER,
248     x_eft_printing_program_id               OUT NOCOPY    NUMBER,
249     x_eft_user_number                       OUT NOCOPY    VARCHAR2,
250     x_eft_swift_code                        OUT NOCOPY    VARCHAR2,
251     x_email_format                          OUT NOCOPY    VARCHAR2,
252     x_email_address                         OUT NOCOPY    VARCHAR2,
253     x_phone_calling_calendar                OUT NOCOPY    VARCHAR2,
254     x_last_contact_dt_time                  OUT NOCOPY    DATE,
255     x_timezone_id                           OUT NOCOPY    NUMBER,
256     x_phone_area_code                       OUT NOCOPY    VARCHAR2,
257     x_phone_country_code                    OUT NOCOPY    VARCHAR2,
258     x_phone_number                          OUT NOCOPY    VARCHAR2,
259     x_phone_extension                       OUT NOCOPY    VARCHAR2,
260     x_phone_line_type                       OUT NOCOPY    VARCHAR2,
261     x_telex_number                          OUT NOCOPY    VARCHAR2,
262     x_web_type                              OUT NOCOPY    VARCHAR2,
263     x_url                                   OUT NOCOPY    VARCHAR2,
264     x_content_source_type                   OUT NOCOPY    VARCHAR2,
265     x_raw_phone_number                      OUT NOCOPY    VARCHAR2,
266     x_contact_point_purpose                 OUT NOCOPY    VARCHAR2,
267     x_primary_by_purpose                    OUT NOCOPY    VARCHAR2,
268     x_created_by_module                     OUT NOCOPY    VARCHAR2,
272   );
269     x_application_id                        OUT NOCOPY    NUMBER,
270     x_transposed_phone_number               OUT NOCOPY    VARCHAR2,
271     x_actual_content_source                 OUT NOCOPY    VARCHAR2
273 
274   PROCEDURE delete_row (
275     x_contact_point_id                      IN     NUMBER
276   );
277 
278 END hz_contact_points_pkg;