DBA Data[Home] [Help]

PACKAGE: APPS.IGS_EN_VAL_DIT

Source


1 PACKAGE IGS_EN_VAL_DIT AUTHID CURRENT_USER AS
2 /* $Header: IGSEN31S.pls 115.4 2002/11/28 23:56:53 nsidana ship $ */
3   --
4 /* Bug 1956374
5    Who msrinivi
6    What duplicate removal Rremoved genp_prc_clear_rowid,genp_set_row_id
7 */
8   --
9   TYPE t_dit_rowids IS TABLE OF
10   ROWID
11   INDEX BY BINARY_INTEGER;
12   --
13   --
14   gt_rowid_table t_dit_rowids;
15   --
16   --
17   gt_empty_table t_dit_rowids;
18   --
19   --
20   gv_table_index BINARY_INTEGER;
21   --
22   -- Routine to clear rowids saved in a PL/SQL TABLE from a prior commit.
23   --
24   -- Routine to process dit rowids in a PL/SQL TABLE for the current commit
25   FUNCTION enrp_prc_dit_rowids(
26   p_inserting IN BOOLEAN ,
27   p_updating IN BOOLEAN ,
28   p_deleting IN BOOLEAN ,
29   p_message_name OUT NOCOPY VARCHAR2)
30 RETURN BOOLEAN;
31 --PRAGMA RESTRICT_REFERENCES (enrp_prc_dit_rowids,WNDS);
32   --
33   -- Validate the disability type.
34   FUNCTION enrp_val_dit_open(
35   p_disability_type IN VARCHAR2 ,
36   p_govt_disability_type IN VARCHAR2 ,
37   p_message_name OUT NOCOPY VARCHAR2)
38 RETURN BOOLEAN;
39 --PRAGMA RESTRICT_REFERENCES (enrp_val_dit_open,WNDS);
40 END IGS_EN_VAL_DIT;