CREATE TABLE adempiere.JP_MatrixWindow
(
  JP_MatrixWindow_ID numeric(10,0) NOT NULL,
  JP_MatrixWindow_uu character varying(36) DEFAULT NULL::character varying,
  AD_Client_ID numeric(10,0) NOT NULL,
  AD_Org_ID numeric(10,0) NOT NULL,
  IsActive character(1) NOT NULL DEFAULT 'Y'::bpchar,
  Created timestamp without time zone NOT NULL DEFAULT now(),
  CreatedBy numeric(10,0) NOT NULL,
  Updated timestamp without time zone NOT NULL DEFAULT now(),
  UpdatedBy numeric(10,0) NOT NULL,


  Value character varying(40) NOT NULL,
  Name character varying(120) NOT NULL,
  Description character varying(255),
  AD_Window_ID  numeric(10,0) NOT NULL,
  AD_Tab_ID  numeric(10,0) NOT NULL,
  JP_MatrixColumnKey_ID  numeric(10,0) NOT NULL,
  JP_MatrixRowKey_ID  numeric(10,0) NOT NULL,
  FieldLength numeric(10,0) DEFAULT 100::numeric,
  JP_QuickEntryWindow_ID numeric(10,0) DEFAULT NULL::numeric,

  CONSTRAINT JP_MatrixWindow_pkey PRIMARY KEY (JP_MatrixWindow_ID)
)