DBA Data[Home] [Help]

PACKAGE: APPS.IGS_GE_MNT_SDTT

Source


1 PACKAGE IGS_GE_MNT_SDTT AUTHID CURRENT_USER AS
2 /* $Header: IGSGE06S.pls 115.7 2002/11/29 00:32:23 nsidana ship $ */
3   --
4   -- Delete a record in the table s_disable_table_trigger.
5   PROCEDURE GENP_DEL_SDTT(
6   p_table_name IN VARCHAR2 )
7 ;
8   -- Validate whether the person is a staff member
9 FUNCTION pid_val_staff
10 (p_person_id IN NUMBER,
11  p_preferred_name OUT NOCOPY VARCHAR2
12 )
13 RETURN BOOLEAN;
14 
15 -- This function takes a varchar string and a format mask and checks whether the string is in the passed format or not. Bug : 2325141
16 FUNCTION check_format_mask(s IN VARCHAR2, t IN VARCHAR2) RETURN BOOLEAN;
17 
18 END IGS_GE_MNT_SDTT;