DBA Data[Home] [Help]

PACKAGE: APPS.AK_SECURITY_PUB

Source


1 package AK_SECURITY_PUB AUTHID CURRENT_USER as
2 /* $Header: akdpsecs.pls 115.4 2002/01/17 12:31:22 pkm ship      $ */
3 
4 -- Global constants holding the package and file names to be used by
5 -- messaging routines in the case of an unexpected error.
6 
7 G_PKG_NAME      CONSTANT    VARCHAR2(30) := 'AK_SECURITY_PUB';
8 
9 -- Type definitions
10 
11 TYPE Resp_PK_Rec_Type IS RECORD (
12   responsibility_id      NUMBER:= NULL,
13   responsibility_appl_id NUMBER:= NULL,
14   attribute_appl_id      NUMBER := NULL,
15   attribute_code         VARCHAR2(30) := NULL
16 );
17 
18 
19 TYPE Resp_PK_Tbl_Type IS TABLE OF Resp_PK_Rec_Type
20 	INDEX BY BINARY_INTEGER;
21 
22 TYPE Excluded_Tbl_Type IS TABLE OF ak_excluded_items%ROWTYPE
23     INDEX BY BINARY_INTEGER;
24 
25 TYPE Resp_Sec_Tbl_Type IS TABLE OF ak_resp_security_attributes%ROWTYPE
26     INDEX BY BINARY_INTEGER;
27 
28 /* Constants for missing data types */
29 G_MISS_RESP_PK_TBL       Resp_PK_Tbl_Type;
30 
31 end AK_SECURITY_PUB;