DBA Data[Home] [Help]

PACKAGE: APPS.PER_NO_WORK_INCIDENT_API

Source


1 package per_no_work_incident_api as
2 /* $Header: peincnoi.pkh 120.1 2005/10/02 02:42:15 aroussel $ */
3 /*#
4  * This package contains work incidents APIs for Norway.
5  * @rep:scope public
6  * @rep:product PER
7  * @rep:displayname Work Incident for Norway.
8 */
9 --
10 -- ----------------------------------------------------------------------------
11 -- |-------------------------< create_no_work_incident >----------------------|
12 -- ----------------------------------------------------------------------------
13 --
14 -- {Start Of Comments}
15 /*#
16  * This API creates a work incident record for a person in Norway.
17  *
18  * This API is an alternative to the API create_work_incident. If p_validate is
19  * set to false, an applicant is created.
20  *
21  * <p><b>Licensing</b><br>
22  * This API is licensed for use with Human Resources.
23  *
24  * <p><b>Prerequisites</b><br>
25  * Person must exist.
26  *
27  * <p><b>Post Success</b><br>
28  * The work incident record is successfully inserted in the database.
29  *
30  * <p><b>Post Failure</b><br>
31  * The API does not create the work incident record and raises an error.
32  *
33  * @param p_validate If true, then validation alone will be performed and the
34  * database will remain unchanged. If false and all validation checks pass,
35  * then the database will be modified.
36  * @param p_effective_date Determines when the DateTrack operation comes into
37  * force.
38  * @param p_person_id Identifies the person for whom you create the work
39  * incident record.
40  * @param p_incident_reference Reference code for the incident record.
41  * @param p_incident_type The type of work incident that is being recorded.
42  * @param p_at_work_flag Indicates whether work incident occurred at work or en
43  * route.
44  * @param p_incident_date The date that the work incident occurred.
45  * @param p_incident_time The time that the incident occurred. (HH24:MI).
46  * @param p_org_notified_date The date that the organization was notified of
47  * the work incident.
48  * @param p_assignment_id Identifies the assignment for which you create the
49  * work incident record.
50  * @param p_location Location of incident (not an HRMS location).
51  * @param p_report_date The date the incident was reported.
52  * @param p_report_time The time the incident was reported. (HH24:MI).
53  * @param p_report_method The method by which the incident was reported.
54  * @param p_person_reported_by The id of the person who reported the work
55  * incident to the authorities.
56  * @param p_person_reported_to The name and contact details of the person (not
57  * held on HRMS) representing the authority that the incident has been reported
58  * to.
59  * @param p_witness_details The name and contact details of any witnesses to
60  * the work incident.
61  * @param p_description Description of the work incident.
62  * @param p_injury_type Type of injury suffered by the person in the work
63  * incident.
64  * @param p_disease_type Type of disease diagnosed as resulting from the work
65  * incident.
66  * @param p_hazard_type Object or substance involved in the work incident.
67  * @param p_body_part Details of the injured or diseased area of the person's
68  * anatomy.
69  * @param p_treatment_received_flag Indicates if medical treatment has been
70  * administered to the person.
71  * @param p_hospital_details Name and contact details of the hospital where
72  * treatment has been administered.
73  * @param p_emergency_code Indicates whether admitted to an emergency room.
74  * @param p_hospitalized_flag Indicates whether hospitalized.
75  * @param p_hospital_address Address of the hospital.
76  * @param p_activity_at_time_of_work Activity of the person at the time of the
77  * incident.
78  * @param p_objects_involved Objects or substances involved in the incident.
79  * @param p_privacy_issue Indicates whether the incident needs to be kept
80  * private.
81  * @param p_work_start_time Time the person started work (HH24:MI).
82  * @param p_date_of_death Date of persons death.
83  * @param p_report_completed_by Name of the person completing this incident
84  * report.
85  * @param p_reporting_person_title Title of the person completing this incident
86  * report.
87  * @param p_reporting_person_phone Phone number of the person completing this
88  * incident report.
89  * @param p_days_restricted_work Number of days the person is on restricted
90  * work.
91  * @param p_days_away_from_work Number of days the person is away from work or
92  * on transfer.
93  * @param p_doctor_name Name of the medical practitioner coordinating the
94  * treatment of the person.
95  * @param p_compensation_date Date compensation was awarded.
96  * @param p_compensation_currency Currency (code) in which compensation was
97  * awarded.
98  * @param p_compensation_amount Amount of compensation awarded.
99  * @param p_remedial_hs_action Description of corrective action that has been
100  * recommended by the health and safety representative.
101  * @param p_notified_hsrep_id The person id of the health and safety
102  * representative notified of the work incident.
103  * @param p_notified_hsrep_date The date the health and safety representative
104  * was notified.
105  * @param p_notified_rep_id The id of the person who has been notified of the
106  * work incident and who represents (by role) the representative body.
107  * @param p_notified_rep_date The date the representative body representative
108  * was notified.
109  * @param p_notified_rep_org_id The id (organization) of the notified
110  * representative body.
111  * @param p_related_incident_id The id of any work incident that is related to
112  * the current work incident.
113  * @param p_over_time_flag Indicates if the incident occurred over a period of
114  * time.
115  * @param p_absence_exists_flag Indicates if person has been absent (not an
116  * HRMS absence) due to the incident.
117  * @param p_attribute_category This context value determines which flexfield
118  * structure to use with the descriptive flexfield segments.
119  * @param p_attribute1 Descriptive flexfield segment.
120  * @param p_attribute2 Descriptive flexfield segment.
121  * @param p_attribute3 Descriptive flexfield segment.
122  * @param p_attribute4 Descriptive flexfield segment.
123  * @param p_attribute5 Descriptive flexfield segment.
124  * @param p_attribute6 Descriptive flexfield segment.
125  * @param p_attribute7 Descriptive flexfield segment.
126  * @param p_attribute8 Descriptive flexfield segment.
127  * @param p_attribute9 Descriptive flexfield segment.
128  * @param p_attribute10 Descriptive flexfield segment.
129  * @param p_attribute11 Descriptive flexfield segment.
130  * @param p_attribute12 Descriptive flexfield segment.
131  * @param p_attribute13 Descriptive flexfield segment.
132  * @param p_attribute14 Descriptive flexfield segment.
133  * @param p_attribute15 Descriptive flexfield segment.
134  * @param p_attribute16 Descriptive flexfield segment.
135  * @param p_attribute17 Descriptive flexfield segment.
136  * @param p_attribute18 Descriptive flexfield segment.
137  * @param p_attribute19 Descriptive flexfield segment.
138  * @param p_attribute20 Descriptive flexfield segment.
139  * @param p_attribute21 Descriptive flexfield segment.
140  * @param p_attribute22 Descriptive flexfield segment.
141  * @param p_attribute23 Descriptive flexfield segment.
142  * @param p_attribute24 Descriptive flexfield segment.
143  * @param p_attribute25 Descriptive flexfield segment.
144  * @param p_attribute26 Descriptive flexfield segment.
145  * @param p_attribute27 Descriptive flexfield segment.
146  * @param p_attribute28 Descriptive flexfield segment.
147  * @param p_attribute29 Descriptive flexfield segment.
148  * @param p_attribute30 Descriptive flexfield segment.
149  * @param p_date_rep_social_security Date reported to social security.
150  * @param p_date_rep_labor_inspection Date reported to labor inspection
151  * @param p_incident_id If p_validate is false, uniquely identifies the work
152  * incident created. If p_validate is true, set to null.
153  * @param p_object_version_number If p_validate is false, then set to the
154  * version number of the created work incident. If p_validate is true, then the
155  * value will be null.
156  * @rep:displayname Create Work Incident for Norway.
157  * @rep:category BUSINESS_ENTITY PER_WORK_INCIDENT
158  * @rep:lifecycle active
159  * @rep:scope public
160  * @rep:ihelp PER/@scalapi APIs in Oracle HRMS
161 */
162 --
163 -- {End Of Comments}
164 --
165 procedure create_no_work_incident
166   (p_validate                      in     boolean  default false
167   ,p_effective_date                in     date
168   ,p_person_id                     in     number
169   ,p_incident_reference            in     varchar2
170   ,p_incident_type                 in     varchar2
171   ,p_at_work_flag                  in     varchar2
172   ,p_incident_date                 in     date
173   ,p_incident_time                 in     varchar2 default null
174   ,p_org_notified_date             in     date     default null
175   ,p_assignment_id                 in     number   default null
176   ,p_location                      in     varchar2 default null
177   ,p_report_date                   in     date     default null
178   ,p_report_time                   in     varchar2 default null
179   ,p_report_method                 in     varchar2 default null
180   ,p_person_reported_by            in     number   default null
181   ,p_person_reported_to            in     varchar2 default null
182   ,p_witness_details               in     varchar2 default null
183   ,p_description                   in     varchar2 default null
184   ,p_injury_type                   in     varchar2 default null
185   ,p_disease_type                  in     varchar2 default null
186   ,p_hazard_type                   in     varchar2 default null
187   ,p_body_part                     in     varchar2 default null
188   ,p_treatment_received_flag       in     varchar2 default null
189   ,p_hospital_details              in     varchar2 default null
190   ,p_emergency_code                in     varchar2 default null
191   ,p_hospitalized_flag             in     varchar2 default null
192   ,p_hospital_address              in     varchar2 default null
193   ,p_activity_at_time_of_work      in     varchar2 default null
194   ,p_objects_involved              in     varchar2 default null
195   ,p_privacy_issue                 in     varchar2 default null
196   ,p_work_start_time               in     varchar2 default null
197   ,p_date_of_death                 in     date     default null
198   ,p_report_completed_by           in     varchar2 default null
199   ,p_reporting_person_title        in     varchar2 default null
200   ,p_reporting_person_phone        in     varchar2 default null
201   ,p_days_restricted_work          in     number   default null
202   ,p_days_away_from_work           in     number   default null
203   ,p_doctor_name                   in     varchar2 default null
204   ,p_compensation_date             in     date     default null
205   ,p_compensation_currency         in     varchar2 default null
206   ,p_compensation_amount           in     number   default null
207   ,p_remedial_hs_action            in     varchar2 default null
208   ,p_notified_hsrep_id             in     number   default null
209   ,p_notified_hsrep_date           in     date     default null
210   ,p_notified_rep_id               in     number   default null
211   ,p_notified_rep_date             in     date     default null
212   ,p_notified_rep_org_id           in     number   default null
213   ,p_related_incident_id           in     number   default null
214   ,p_over_time_flag                in     varchar2 default null
215   ,p_absence_exists_flag           in     varchar2 default null
216   ,p_attribute_category            in     varchar2 default null
217   ,p_attribute1                    in     varchar2 default null
218   ,p_attribute2                    in     varchar2 default null
219   ,p_attribute3                    in     varchar2 default null
220   ,p_attribute4                    in     varchar2 default null
221   ,p_attribute5                    in     varchar2 default null
222   ,p_attribute6                    in     varchar2 default null
223   ,p_attribute7                    in     varchar2 default null
224   ,p_attribute8                    in     varchar2 default null
225   ,p_attribute9                    in     varchar2 default null
226   ,p_attribute10                   in     varchar2 default null
227   ,p_attribute11                   in     varchar2 default null
228   ,p_attribute12                   in     varchar2 default null
229   ,p_attribute13                   in     varchar2 default null
230   ,p_attribute14                   in     varchar2 default null
231   ,p_attribute15                   in     varchar2 default null
232   ,p_attribute16                   in     varchar2 default null
233   ,p_attribute17                   in     varchar2 default null
234   ,p_attribute18                   in     varchar2 default null
235   ,p_attribute19                   in     varchar2 default null
236   ,p_attribute20                   in     varchar2 default null
237   ,p_attribute21                   in     varchar2 default null
238   ,p_attribute22                   in     varchar2 default null
239   ,p_attribute23                   in     varchar2 default null
240   ,p_attribute24                   in     varchar2 default null
241   ,p_attribute25                   in     varchar2 default null
242   ,p_attribute26                   in     varchar2 default null
243   ,p_attribute27                   in     varchar2 default null
244   ,p_attribute28                   in     varchar2 default null
245   ,p_attribute29                   in     varchar2 default null
249   ,p_incident_id                      out nocopy number
246   ,p_attribute30                   in     varchar2 default null
247   ,p_date_rep_social_security      in     varchar2 default null
248   ,p_date_rep_labor_inspection     in     varchar2 default null
250   ,p_object_version_number            out nocopy number
251   );
252 --
253 -- ----------------------------------------------------------------------------
254 -- |-------------------------< update_no_work_incident >----------------------|
255 -- ----------------------------------------------------------------------------
256 --
257 -- {Start Of Comments}
258 /*#
259  * This API updates a work incident record for a person in Norway.
260  *
261  * This API is an alternative to the API update_work_incident.
262  *
263  * <p><b>Licensing</b><br>
264  * This API is licensed for use with Human Resources.
265  *
266  * <p><b>Prerequisites</b><br>
267  * The work incident record identified by p_incident_id and
268  * object_version_number must exist.
269  *
270  * <p><b>Post Success</b><br>
271  * The work incident record is successfully updated in the database. The work
272  * incident record is created and the API sets the following out
273  *
274  * <p><b>Post Failure</b><br>
275  * The API does not update the work incident and raises an error.
276  *
277  * @param p_validate If true, then validation alone will be performed and the
278  * database will remain unchanged. If false and all validation checks pass,
279  * then the database will be modified.
280  * @param p_effective_date Determines when the DateTrack operation comes into
281  * force.
282  * @param p_incident_id Identifier of the incident record.
283  * @param p_object_version_number Pass in the current version number of the
284  * work incident. to be updated. When the API completes if p_validate is false,
285  * will be set to the new version number of the updated work incident. If
286  * p_validate is true will be set to the same value which was passed in.
287  * @param p_incident_reference Reference code for the incident record.
288  * @param p_incident_type The type of work incident that is being updated.
289  * @param p_at_work_flag Indicates whether work incident occurred at work or en
290  * route.
291  * @param p_incident_date The date that the incident occurred.
292  * @param p_incident_time The time that the incident occurred. (HH24:MI).
293  * @param p_org_notified_date The date that the organization was notified of
294  * the work incident.
295  * @param p_assignment_id Identifies the assignment for which you create the
296  * work incident record.
297  * @param p_location Location of incident (not an HRMS location).
298  * @param p_report_date The date the incident was reported.
299  * @param p_report_time The time the incident was reported. (HH24:MI).
300  * @param p_report_method The method by which the incident was reported.
301  * @param p_person_reported_by The id if the person who reported the work
302  * incident to the authorities.
303  * @param p_person_reported_to The name and contact details of the person (not
304  * held on HRMS) representing the authority that the incident has been reported
305  * to.
306  * @param p_witness_details The name and contact details of any witnesses to
307  * the work incident.
308  * @param p_description Description of the work incident.
309  * @param p_injury_type Type of injury suffered by the person in the work
310  * incident.
311  * @param p_disease_type Type of disease diagnosed as resulting from the work
312  * incident.
313  * @param p_hazard_type Object or substance involved in the work incident.
314  * @param p_body_part Details of the injured or diseased area of the person's
315  * anatomy.
316  * @param p_treatment_received_flag Indicates if medical treatment has been
317  * administered to the person.
318  * @param p_hospital_details Name and contact details of the hospital where
319  * treatment has been administered.
320  * @param p_emergency_code Indicates whether admitted to an emergency room.
321  * @param p_hospitalized_flag Indicates whether hospitalized.
322  * @param p_hospital_address Address of the hospital.
323  * @param p_activity_at_time_of_work Activity of the person at the time of the
324  * incident.
325  * @param p_objects_involved Objects or substances involved in the incident.
326  * @param p_privacy_issue Indicates whether the incident is should be kept
327  * private.
331  * report.
328  * @param p_work_start_time Time the person started work (HH24:MI).
329  * @param p_date_of_death Date of persons death.
330  * @param p_report_completed_by Name of the person completing this incident
332  * @param p_reporting_person_title Title of the person completing this incident
333  * report.
334  * @param p_reporting_person_phone Phone number of the person completing this
335  * incident report.
336  * @param p_days_restricted_work Number of days the person is on restricted
337  * work.
338  * @param p_days_away_from_work Number of days the person is away from work or
339  * on transfer.
340  * @param p_doctor_name Name of the medical practitioner coordinating the
341  * treatment of the person.
342  * @param p_compensation_date Date compensation was awarded.
343  * @param p_compensation_currency Currency (code) in which compensation was
344  * awarded.
345  * @param p_compensation_amount Amount of compensation awarded.
346  * @param p_remedial_hs_action Description of any corrective action that has
347  * been recommended by the health and safety representative.
348  * @param p_notified_hsrep_id The person id of the health and safety
349  * representative notified of the work incident.
350  * @param p_notified_hsrep_date The date the health and safety representative
351  * was notified.
352  * @param p_notified_rep_id The id of the person who has been notified of the
353  * work incident and who represents (by role) the representative body.
354  * @param p_notified_rep_date The date the representative body representative
355  * was notified.
356  * @param p_notified_rep_org_id The id (organization) of the notified
357  * representative body.
358  * @param p_related_incident_id The id of any work incident that is related to
359  * the current work incident.
360  * @param p_over_time_flag Indicates if the medical condition (injury or
361  * disease) occurred over a period of time.
362  * @param p_absence_exists_flag Indicates if person has been absent (not an
363  * HRMS absence) due to the incident.
364  * @param p_attribute_category This context value determines which flexfield
365  * structure to use with the descriptive flexfield segments.
366  * @param p_attribute1 Descriptive flexfield segment.
367  * @param p_attribute2 Descriptive flexfield segment.
368  * @param p_attribute3 Descriptive flexfield segment.
369  * @param p_attribute4 Descriptive flexfield segment.
370  * @param p_attribute5 Descriptive flexfield segment.
371  * @param p_attribute6 Descriptive flexfield segment.
372  * @param p_attribute7 Descriptive flexfield segment.
373  * @param p_attribute8 Descriptive flexfield segment.
374  * @param p_attribute9 Descriptive flexfield segment.
375  * @param p_attribute10 Descriptive flexfield segment.
376  * @param p_attribute11 Descriptive flexfield segment.
377  * @param p_attribute12 Descriptive flexfield segment.
378  * @param p_attribute13 Descriptive flexfield segment.
379  * @param p_attribute14 Descriptive flexfield segment.
380  * @param p_attribute15 Descriptive flexfield segment.
381  * @param p_attribute16 Descriptive flexfield segment.
382  * @param p_attribute17 Descriptive flexfield segment.
383  * @param p_attribute18 Descriptive flexfield segment.
384  * @param p_attribute19 Descriptive flexfield segment.
385  * @param p_attribute20 Descriptive flexfield segment.
386  * @param p_attribute21 Descriptive flexfield segment.
387  * @param p_attribute22 Descriptive flexfield segment.
388  * @param p_attribute23 Descriptive flexfield segment.
389  * @param p_attribute24 Descriptive flexfield segment.
390  * @param p_attribute25 Descriptive flexfield segment.
391  * @param p_attribute26 Descriptive flexfield segment.
392  * @param p_attribute27 Descriptive flexfield segment.
393  * @param p_attribute28 Descriptive flexfield segment.
394  * @param p_attribute29 Descriptive flexfield segment.
395  * @param p_attribute30 Descriptive flexfield segment.
396  * @param p_date_rep_social_security Date Reported to Social Security.
397  * @param p_date_rep_labor_inspection Date Reported to Labor Inspection.
398  * @rep:displayname Update Work Incident for Norway
399  * @rep:category BUSINESS_ENTITY PER_WORK_INCIDENT
400  * @rep:lifecycle active
401  * @rep:scope public
402  * @rep:ihelp PER/@scalapi APIs in Oracle HRMS
403 */
404 --
405 -- {End Of Comments}
406 --
407 procedure update_no_work_incident
408   (p_validate                      in     boolean  default false
409   ,p_effective_date                in     date
410   ,p_incident_id                   in     number
411   ,p_object_version_number         in out nocopy number
412   ,p_incident_reference            in     varchar2 default hr_api.g_varchar2
413   ,p_incident_type                 in     varchar2 default hr_api.g_varchar2
414   ,p_at_work_flag                  in     varchar2 default hr_api.g_varchar2
415   ,p_incident_date                 in     date     default hr_api.g_date
416   ,p_incident_time                 in     varchar2 default hr_api.g_varchar2
417   ,p_org_notified_date             in     date     default hr_api.g_date
418   ,p_assignment_id                 in     number   default hr_api.g_number
419   ,p_location                      in     varchar2 default hr_api.g_varchar2
420   ,p_report_date                   in     date     default hr_api.g_date
421   ,p_report_time                   in     varchar2 default hr_api.g_varchar2
422   ,p_report_method                 in     varchar2 default hr_api.g_varchar2
423   ,p_person_reported_by            in     number   default hr_api.g_number
424   ,p_person_reported_to            in     varchar2 default hr_api.g_varchar2
425   ,p_witness_details               in     varchar2 default hr_api.g_varchar2
426   ,p_description                   in     varchar2 default hr_api.g_varchar2
427   ,p_injury_type                   in     varchar2 default hr_api.g_varchar2
428   ,p_disease_type                  in     varchar2 default hr_api.g_varchar2
429   ,p_hazard_type                   in     varchar2 default hr_api.g_varchar2
430   ,p_body_part                     in     varchar2 default hr_api.g_varchar2
431   ,p_treatment_received_flag       in     varchar2 default hr_api.g_varchar2
432   ,p_hospital_details              in     varchar2 default hr_api.g_varchar2
433   ,p_emergency_code                in     varchar2 default hr_api.g_varchar2
434   ,p_hospitalized_flag             in     varchar2 default hr_api.g_varchar2
435   ,p_hospital_address              in     varchar2 default hr_api.g_varchar2
436   ,p_activity_at_time_of_work      in     varchar2 default hr_api.g_varchar2
437   ,p_objects_involved              in     varchar2 default hr_api.g_varchar2
438   ,p_privacy_issue                 in     varchar2 default hr_api.g_varchar2
439   ,p_work_start_time               in     varchar2 default hr_api.g_varchar2
440   ,p_date_of_death                 in     date     default hr_api.g_date
441   ,p_report_completed_by           in     varchar2 default hr_api.g_varchar2
442   ,p_reporting_person_title        in     varchar2 default hr_api.g_varchar2
443   ,p_reporting_person_phone        in     varchar2 default hr_api.g_varchar2
444   ,p_days_restricted_work          in     number   default hr_api.g_number
445   ,p_days_away_from_work           in     number   default hr_api.g_number
446   ,p_doctor_name                   in     varchar2 default hr_api.g_varchar2
447   ,p_compensation_date             in     date     default hr_api.g_date
448   ,p_compensation_currency         in     varchar2 default hr_api.g_varchar2
449   ,p_compensation_amount           in     number   default hr_api.g_number
453   ,p_notified_rep_id               in     number   default hr_api.g_number
450   ,p_remedial_hs_action            in     varchar2 default hr_api.g_varchar2
451   ,p_notified_hsrep_id             in     number   default hr_api.g_number
452   ,p_notified_hsrep_date           in     date     default hr_api.g_date
454   ,p_notified_rep_date             in     date     default hr_api.g_date
455   ,p_notified_rep_org_id           in     number   default hr_api.g_number
456   ,p_related_incident_id           in     number   default hr_api.g_number
457   ,p_over_time_flag                in     varchar2 default hr_api.g_varchar2
458   ,p_absence_exists_flag           in     varchar2 default hr_api.g_varchar2
459   ,p_attribute_category            in     varchar2 default hr_api.g_varchar2
460   ,p_attribute1                    in     varchar2 default hr_api.g_varchar2
461   ,p_attribute2                    in     varchar2 default hr_api.g_varchar2
462   ,p_attribute3                    in     varchar2 default hr_api.g_varchar2
463   ,p_attribute4                    in     varchar2 default hr_api.g_varchar2
464   ,p_attribute5                    in     varchar2 default hr_api.g_varchar2
465   ,p_attribute6                    in     varchar2 default hr_api.g_varchar2
466   ,p_attribute7                    in     varchar2 default hr_api.g_varchar2
467   ,p_attribute8                    in     varchar2 default hr_api.g_varchar2
468   ,p_attribute9                    in     varchar2 default hr_api.g_varchar2
469   ,p_attribute10                   in     varchar2 default hr_api.g_varchar2
470   ,p_attribute11                   in     varchar2 default hr_api.g_varchar2
471   ,p_attribute12                   in     varchar2 default hr_api.g_varchar2
472   ,p_attribute13                   in     varchar2 default hr_api.g_varchar2
473   ,p_attribute14                   in     varchar2 default hr_api.g_varchar2
474   ,p_attribute15                   in     varchar2 default hr_api.g_varchar2
475   ,p_attribute16                   in     varchar2 default hr_api.g_varchar2
476   ,p_attribute17                   in     varchar2 default hr_api.g_varchar2
477   ,p_attribute18                   in     varchar2 default hr_api.g_varchar2
478   ,p_attribute19                   in     varchar2 default hr_api.g_varchar2
479   ,p_attribute20                   in     varchar2 default hr_api.g_varchar2
480   ,p_attribute21                   in     varchar2 default hr_api.g_varchar2
481   ,p_attribute22                   in     varchar2 default hr_api.g_varchar2
482   ,p_attribute23                   in     varchar2 default hr_api.g_varchar2
483   ,p_attribute24                   in     varchar2 default hr_api.g_varchar2
484   ,p_attribute25                   in     varchar2 default hr_api.g_varchar2
485   ,p_attribute26                   in     varchar2 default hr_api.g_varchar2
486   ,p_attribute27                   in     varchar2 default hr_api.g_varchar2
487   ,p_attribute28                   in     varchar2 default hr_api.g_varchar2
488   ,p_attribute29                   in     varchar2 default hr_api.g_varchar2
489   ,p_attribute30                   in     varchar2 default hr_api.g_varchar2
490   ,p_date_rep_social_security      in     varchar2 default hr_api.g_varchar2
491   ,p_date_rep_labor_inspection     in     varchar2 default hr_api.g_varchar2
492   );
493 
494 end per_no_work_incident_api;