New package mip_debug_constants.pks to be used to store compilation constants for debugging purposes (packages to use pl from mip_debug). mip_quotation.pck modified to support exchanges based on being provided with an existing model rather than meter size. Changes to the DATAITEM_ROLES.csv to support this new field, impact on mandatory rules captured by mip_helper_special_cases.pck git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3900 248e525c-4dfb-0310-94bc-949c084e9493
15 lines
413 B
Plaintext
15 lines
413 B
Plaintext
CREATE OR REPLACE PACKAGE mip_debug_constants IS
|
|
|
|
-- Author : HARDYA
|
|
-- Created : 06/03/2008 09:04:54
|
|
-- Purpose : Constants used for conditional compilation of debug functions
|
|
|
|
-- Public constant declarations
|
|
debugging CONSTANT BOOLEAN := TRUE;
|
|
bulk_load CONSTANT BOOLEAN := TRUE;
|
|
quotation CONSTANT BOOLEAN := TRUE;
|
|
files CONSTANT BOOLEAN := TRUE;
|
|
|
|
END mip_debug_constants;
|
|
/
|