CREATE TABLE adempiere.JP_BusinessUnit
(
  AD_Client_ID numeric(10,0) NOT NULL,
  AD_Org_ID numeric(10,0) NOT NULL,
  JP_BusinessUnit_ID numeric(10,0) NOT NULL,
  JP_BusinessArea_ID numeric(10,0),
  JP_OrgHQ_ID numeric(10,0),
  Createdby numeric(10,0) NOT NULL,
  Updatedby numeric(10,0) NOT NULL,
  Created timestamp without time zone NOT NULL DEFAULT statement_timestamp(),
  Updated timestamp without time zone NOT NULL DEFAULT statement_timestamp(),


  IsActive character(1) NOT NULL DEFAULT 'Y'::bpchar,
  JP_BusinessUnit_UU character varying(36) DEFAULT NULL::character varying,

  Description character varying(255) DEFAULT NULL::character varying,
  Name character varying(120) NOT NULL,
  Value character varying(40) NOT NULL,

  CONSTRAINT JP_BusinessUnit_key PRIMARY KEY (JP_BusinessUnit_ID)
)
