DBA Data[Home] [Help]

PACKAGE: APPS.IGS_FI_ANC_INT_PKG

Source


1 PACKAGE igs_fi_anc_int_pkg AUTHID CURRENT_USER AS
2 /* $Header: IGSSI81S.pls 115.10 2002/11/29 03:54:40 nsidana ship $ */
3 
4   PROCEDURE insert_row (
5     x_rowid                             IN OUT NOCOPY VARCHAR2,
6     x_ancillary_int_id                  IN OUT NOCOPY NUMBER,
7     x_person_id                         IN     NUMBER,
8     x_person_id_type                    IN     VARCHAR2,
9     x_api_person_id                     IN     VARCHAR2,
10     x_status                            IN     VARCHAR2,
11     x_fee_type                          IN     VARCHAR2,
12     x_fee_cal_type                      IN     VARCHAR2,
13     x_fee_ci_sequence_number            IN     NUMBER,
14     x_ancillary_attribute1              IN     VARCHAR2,
15     x_ancillary_attribute2              IN     VARCHAR2,
16     x_ancillary_attribute3              IN     VARCHAR2,
17     x_ancillary_attribute4              IN     VARCHAR2,
18     x_ancillary_attribute5              IN     VARCHAR2,
19     x_ancillary_attribute6              IN     VARCHAR2,
20     x_ancillary_attribute7              IN     VARCHAR2,
21     x_ancillary_attribute8              IN     VARCHAR2,
22     x_ancillary_attribute9              IN     VARCHAR2,
23     x_ancillary_attribute10             IN     VARCHAR2,
24     x_ancillary_attribute11             IN     VARCHAR2,
25     x_ancillary_attribute12             IN     VARCHAR2,
26     x_ancillary_attribute13             IN     VARCHAR2,
27     x_ancillary_attribute14             IN     VARCHAR2,
28     x_ancillary_attribute15             IN     VARCHAR2,
29     x_attribute_category                IN     VARCHAR2,
30     x_attribute1                        IN     VARCHAR2,
31     x_attribute2                        IN     VARCHAR2,
32     x_attribute3                        IN     VARCHAR2,
33     x_attribute4                        IN     VARCHAR2,
34     x_attribute5                        IN     VARCHAR2,
35     x_attribute6                        IN     VARCHAR2,
36     x_attribute7                        IN     VARCHAR2,
37     x_attribute8                        IN     VARCHAR2,
38     x_attribute9                        IN     VARCHAR2,
39     x_attribute10                       IN     VARCHAR2,
40     x_attribute11                       IN     VARCHAR2,
41     x_attribute12                       IN     VARCHAR2,
42     x_attribute13                       IN     VARCHAR2,
43     x_attribute14                       IN     VARCHAR2,
44     x_attribute15                       IN     VARCHAR2,
45     x_attribute16                       IN     VARCHAR2,
46     x_attribute17                       IN     VARCHAR2,
47     x_attribute18                       IN     VARCHAR2,
48     x_attribute19                       IN     VARCHAR2,
49     x_attribute20                       IN     VARCHAR2,
50     x_effective_dt                      IN     DATE,
51     x_error_msg                         IN     VARCHAR2,
52     x_validation_flag                   IN     VARCHAR2,
53     x_mode                              IN     VARCHAR2    DEFAULT 'R'
54   );
55 
56   PROCEDURE lock_row (
57     x_rowid                             IN     VARCHAR2,
58     x_ancillary_int_id                  IN     NUMBER,
59     x_person_id                         IN     NUMBER,
60     x_person_id_type                    IN     VARCHAR2,
61     x_api_person_id                     IN     VARCHAR2,
62     x_status                            IN     VARCHAR2,
63     x_fee_type                          IN     VARCHAR2,
64     x_fee_cal_type                      IN     VARCHAR2,
65     x_fee_ci_sequence_number            IN     NUMBER,
66     x_ancillary_attribute1              IN     VARCHAR2,
67     x_ancillary_attribute2              IN     VARCHAR2,
68     x_ancillary_attribute3              IN     VARCHAR2,
69     x_ancillary_attribute4              IN     VARCHAR2,
70     x_ancillary_attribute5              IN     VARCHAR2,
71     x_ancillary_attribute6              IN     VARCHAR2,
72     x_ancillary_attribute7              IN     VARCHAR2,
73     x_ancillary_attribute8              IN     VARCHAR2,
74     x_ancillary_attribute9              IN     VARCHAR2,
75     x_ancillary_attribute10             IN     VARCHAR2,
76     x_ancillary_attribute11             IN     VARCHAR2,
77     x_ancillary_attribute12             IN     VARCHAR2,
78     x_ancillary_attribute13             IN     VARCHAR2,
79     x_ancillary_attribute14             IN     VARCHAR2,
80     x_ancillary_attribute15             IN     VARCHAR2,
81     x_attribute_category                IN     VARCHAR2,
82     x_attribute1                        IN     VARCHAR2,
83     x_attribute2                        IN     VARCHAR2,
84     x_attribute3                        IN     VARCHAR2,
85     x_attribute4                        IN     VARCHAR2,
86     x_attribute5                        IN     VARCHAR2,
87     x_attribute6                        IN     VARCHAR2,
88     x_attribute7                        IN     VARCHAR2,
89     x_attribute8                        IN     VARCHAR2,
90     x_attribute9                        IN     VARCHAR2,
91     x_attribute10                       IN     VARCHAR2,
92     x_attribute11                       IN     VARCHAR2,
93     x_attribute12                       IN     VARCHAR2,
94     x_attribute13                       IN     VARCHAR2,
95     x_attribute14                       IN     VARCHAR2,
96     x_attribute15                       IN     VARCHAR2,
97     x_attribute16                       IN     VARCHAR2,
98     x_attribute17                       IN     VARCHAR2,
99     x_attribute18                       IN     VARCHAR2,
100     x_attribute19                       IN     VARCHAR2,
101     x_attribute20                       IN     VARCHAR2,
102     x_effective_dt                      IN     DATE,
103     x_error_msg                         IN     VARCHAR2,
104     x_validation_flag                   IN     VARCHAR2
105   );
106 
107   PROCEDURE update_row (
108     x_rowid                             IN     VARCHAR2,
109     x_ancillary_int_id                  IN     NUMBER,
110     x_person_id                         IN     NUMBER,
111     x_person_id_type                    IN     VARCHAR2,
112     x_api_person_id                     IN     VARCHAR2,
113     x_status                            IN     VARCHAR2,
114     x_fee_type                          IN     VARCHAR2,
115     x_fee_cal_type                      IN     VARCHAR2,
116     x_fee_ci_sequence_number            IN     NUMBER,
117     x_ancillary_attribute1              IN     VARCHAR2,
118     x_ancillary_attribute2              IN     VARCHAR2,
119     x_ancillary_attribute3              IN     VARCHAR2,
120     x_ancillary_attribute4              IN     VARCHAR2,
121     x_ancillary_attribute5              IN     VARCHAR2,
122     x_ancillary_attribute6              IN     VARCHAR2,
123     x_ancillary_attribute7              IN     VARCHAR2,
124     x_ancillary_attribute8              IN     VARCHAR2,
125     x_ancillary_attribute9              IN     VARCHAR2,
126     x_ancillary_attribute10             IN     VARCHAR2,
127     x_ancillary_attribute11             IN     VARCHAR2,
128     x_ancillary_attribute12             IN     VARCHAR2,
129     x_ancillary_attribute13             IN     VARCHAR2,
130     x_ancillary_attribute14             IN     VARCHAR2,
131     x_ancillary_attribute15             IN     VARCHAR2,
132     x_attribute_category                IN     VARCHAR2,
133     x_attribute1                        IN     VARCHAR2,
134     x_attribute2                        IN     VARCHAR2,
135     x_attribute3                        IN     VARCHAR2,
136     x_attribute4                        IN     VARCHAR2,
137     x_attribute5                        IN     VARCHAR2,
138     x_attribute6                        IN     VARCHAR2,
139     x_attribute7                        IN     VARCHAR2,
140     x_attribute8                        IN     VARCHAR2,
141     x_attribute9                        IN     VARCHAR2,
142     x_attribute10                       IN     VARCHAR2,
143     x_attribute11                       IN     VARCHAR2,
144     x_attribute12                       IN     VARCHAR2,
145     x_attribute13                       IN     VARCHAR2,
146     x_attribute14                       IN     VARCHAR2,
147     x_attribute15                       IN     VARCHAR2,
148     x_attribute16                       IN     VARCHAR2,
149     x_attribute17                       IN     VARCHAR2,
150     x_attribute18                       IN     VARCHAR2,
151     x_attribute19                       IN     VARCHAR2,
152     x_attribute20                       IN     VARCHAR2,
153     x_effective_dt                      IN     DATE,
154     x_error_msg                         IN     VARCHAR2,
155     x_validation_flag                   IN     VARCHAR2,
156     x_mode                              IN     VARCHAR2    DEFAULT 'R'
157   );
158 
159   PROCEDURE add_row (
160     x_rowid                             IN OUT NOCOPY VARCHAR2,
161     x_ancillary_int_id                  IN OUT NOCOPY NUMBER,
162     x_person_id                         IN     NUMBER,
163     x_person_id_type                    IN     VARCHAR2,
164     x_api_person_id                     IN     VARCHAR2,
165     x_status                            IN     VARCHAR2,
166     x_fee_type                          IN     VARCHAR2,
167     x_fee_cal_type                      IN     VARCHAR2,
168     x_fee_ci_sequence_number            IN     NUMBER,
169     x_ancillary_attribute1              IN     VARCHAR2,
170     x_ancillary_attribute2              IN     VARCHAR2,
171     x_ancillary_attribute3              IN     VARCHAR2,
172     x_ancillary_attribute4              IN     VARCHAR2,
173     x_ancillary_attribute5              IN     VARCHAR2,
174     x_ancillary_attribute6              IN     VARCHAR2,
175     x_ancillary_attribute7              IN     VARCHAR2,
176     x_ancillary_attribute8              IN     VARCHAR2,
177     x_ancillary_attribute9              IN     VARCHAR2,
178     x_ancillary_attribute10             IN     VARCHAR2,
179     x_ancillary_attribute11             IN     VARCHAR2,
180     x_ancillary_attribute12             IN     VARCHAR2,
181     x_ancillary_attribute13             IN     VARCHAR2,
182     x_ancillary_attribute14             IN     VARCHAR2,
183     x_ancillary_attribute15             IN     VARCHAR2,
184     x_attribute_category                IN     VARCHAR2,
185     x_attribute1                        IN     VARCHAR2,
186     x_attribute2                        IN     VARCHAR2,
187     x_attribute3                        IN     VARCHAR2,
188     x_attribute4                        IN     VARCHAR2,
189     x_attribute5                        IN     VARCHAR2,
190     x_attribute6                        IN     VARCHAR2,
191     x_attribute7                        IN     VARCHAR2,
192     x_attribute8                        IN     VARCHAR2,
193     x_attribute9                        IN     VARCHAR2,
194     x_attribute10                       IN     VARCHAR2,
195     x_attribute11                       IN     VARCHAR2,
196     x_attribute12                       IN     VARCHAR2,
197     x_attribute13                       IN     VARCHAR2,
198     x_attribute14                       IN     VARCHAR2,
199     x_attribute15                       IN     VARCHAR2,
200     x_attribute16                       IN     VARCHAR2,
201     x_attribute17                       IN     VARCHAR2,
202     x_attribute18                       IN     VARCHAR2,
203     x_attribute19                       IN     VARCHAR2,
204     x_attribute20                       IN     VARCHAR2,
205     x_effective_dt                      IN     DATE,
206     x_error_msg                         IN     VARCHAR2,
207     x_validation_flag                   IN     VARCHAR2,
208     x_mode                              IN     VARCHAR2    DEFAULT 'R'
209   );
210 
211   PROCEDURE delete_row (
212     x_rowid                             IN     VARCHAR2
213   );
214 
215   FUNCTION get_pk_for_validation (
216     x_ancillary_int_id                  IN     NUMBER
217   ) RETURN BOOLEAN;
218 
219   PROCEDURE get_fk_igs_fi_f_typ_ca_inst (
220     x_fee_cal_type                      IN     VARCHAR2,
221     x_fee_ci_sequence_number            IN     NUMBER,
222     x_fee_type                          IN     VARCHAR2
223   );
224 
225   PROCEDURE GET_FK_IGS_LOOKUPS_VIEW (
226     x_status 				IN 	VARCHAR2
227   );
228 
229   PROCEDURE before_dml (
230     p_action                            IN     VARCHAR2,
231     x_rowid                             IN     VARCHAR2    DEFAULT NULL,
232     x_ancillary_int_id                  IN     NUMBER      DEFAULT NULL,
233     x_person_id                         IN     NUMBER      DEFAULT NULL,
234     x_person_id_type                    IN     VARCHAR2    DEFAULT NULL,
235     x_api_person_id                     IN     VARCHAR2    DEFAULT NULL,
236     x_status                            IN     VARCHAR2    DEFAULT NULL,
237     x_fee_type                          IN     VARCHAR2    DEFAULT NULL,
238     x_fee_cal_type                      IN     VARCHAR2    DEFAULT NULL,
239     x_fee_ci_sequence_number            IN     NUMBER      DEFAULT NULL,
240     x_ancillary_attribute1              IN     VARCHAR2    DEFAULT NULL,
241     x_ancillary_attribute2              IN     VARCHAR2    DEFAULT NULL,
242     x_ancillary_attribute3              IN     VARCHAR2    DEFAULT NULL,
243     x_ancillary_attribute4              IN     VARCHAR2    DEFAULT NULL,
244     x_ancillary_attribute5              IN     VARCHAR2    DEFAULT NULL,
245     x_ancillary_attribute6              IN     VARCHAR2    DEFAULT NULL,
246     x_ancillary_attribute7              IN     VARCHAR2    DEFAULT NULL,
247     x_ancillary_attribute8              IN     VARCHAR2    DEFAULT NULL,
248     x_ancillary_attribute9              IN     VARCHAR2    DEFAULT NULL,
249     x_ancillary_attribute10             IN     VARCHAR2    DEFAULT NULL,
250     x_ancillary_attribute11             IN     VARCHAR2    DEFAULT NULL,
251     x_ancillary_attribute12             IN     VARCHAR2    DEFAULT NULL,
255     x_attribute_category                IN     VARCHAR2    DEFAULT NULL,
252     x_ancillary_attribute13             IN     VARCHAR2    DEFAULT NULL,
253     x_ancillary_attribute14             IN     VARCHAR2    DEFAULT NULL,
254     x_ancillary_attribute15             IN     VARCHAR2    DEFAULT NULL,
256     x_attribute1                        IN     VARCHAR2    DEFAULT NULL,
257     x_attribute2                        IN     VARCHAR2    DEFAULT NULL,
258     x_attribute3                        IN     VARCHAR2    DEFAULT NULL,
259     x_attribute4                        IN     VARCHAR2    DEFAULT NULL,
260     x_attribute5                        IN     VARCHAR2    DEFAULT NULL,
261     x_attribute6                        IN     VARCHAR2    DEFAULT NULL,
262     x_attribute7                        IN     VARCHAR2    DEFAULT NULL,
263     x_attribute8                        IN     VARCHAR2    DEFAULT NULL,
264     x_attribute9                        IN     VARCHAR2    DEFAULT NULL,
265     x_attribute10                       IN     VARCHAR2    DEFAULT NULL,
266     x_attribute11                       IN     VARCHAR2    DEFAULT NULL,
267     x_attribute12                       IN     VARCHAR2    DEFAULT NULL,
268     x_attribute13                       IN     VARCHAR2    DEFAULT NULL,
269     x_attribute14                       IN     VARCHAR2    DEFAULT NULL,
270     x_attribute15                       IN     VARCHAR2    DEFAULT NULL,
271     x_attribute16                       IN     VARCHAR2    DEFAULT NULL,
272     x_attribute17                       IN     VARCHAR2    DEFAULT NULL,
273     x_attribute18                       IN     VARCHAR2    DEFAULT NULL,
274     x_attribute19                       IN     VARCHAR2    DEFAULT NULL,
275     x_attribute20                       IN     VARCHAR2    DEFAULT NULL,
276     x_effective_dt                      IN     DATE        DEFAULT NULL,
277     x_error_msg                         IN     VARCHAR2    DEFAULT NULL,
278     x_validation_flag                   IN     VARCHAR2    DEFAULT NULL,
279     x_creation_date                     IN     DATE        DEFAULT NULL,
280     x_created_by                        IN     NUMBER      DEFAULT NULL,
281     x_last_update_date                  IN     DATE        DEFAULT NULL,
282     x_last_updated_by                   IN     NUMBER      DEFAULT NULL,
283     x_last_update_login                 IN     NUMBER      DEFAULT NULL
284   );
285 
286 END igs_fi_anc_int_pkg;