Return to:
Database Reference Home Page
Return to:
Table Definitions Master List
*Table Name*
pricing_matrix
*Description*
Pricing matrix
*Schema*
CREATE TABLE pricing_matrix (
"company_id" int
NOT NULL -- Company ID
REFERENCES company_master (company_id),
"customer_matrix" numeric(3,0) -- Customer matrix
NOT NULL,
"item_matrix" numeric(3,0) -- Item matrix
NOT NULL,
"matrix_percent" numeric(4,2), -- Matrix %
"matrix_type" char(2)
NOT NULL, -- Matrix type
-- 'LP' - List +
-- 'LM' - List -
-- 'CP' - Cost +
"description" varchar(64), -- Description
"added_by" varchar(16), -- Employee code of who added record
PRIMARY KEY (company_id,customer_matrix,item_matrix)
);
There are no comments on this page. [Add comment]