DBA Data[Home] [Help]

PACKAGE: APPS.AK_AMPARAM_REGISTRY_PUB

Source


1 package AK_AMPARAM_REGISTRY_PUB AUTHID CURRENT_USER as
2 /* $Header: akdpaprs.pls 115.3 2002/09/27 17:54:17 tshort noship $ */
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_AMPARAM_REGISTRY_PUB';
8 
9 -- Type definitions
10 
11 TYPE amparamreg_pk_rec_type is RECORD (
12 APPLICATIONMODULE_DEFN_NAME			varchar2(240) := NULL
13 );
14 
15 TYPE amparamreg_pk_tbl_type IS TABLE OF amparamreg_pk_rec_type INDEX BY BINARY_INTEGER;
16 
17 TYPE amparamreg_Tbl_Type IS TABLE OF ak_am_parameter_registry%ROWTYPE
18 INDEX BY BINARY_INTEGER;
19 
20 /* Constants for missing data types */
21 G_MISS_AMPARAMREG_REC				ak_am_parameter_registry%ROWTYPE;
22 G_MISS_AMPARAMREG_PK_TBL			amparamreg_pk_tbl_type;
23 G_MISS_AMPARAMREG_TBL				amparamreg_Tbl_Type;
24 
25 end AK_AMPARAM_REGISTRY_PUB;