CREATE TABLE CUSBALF ( "Customer_Number" FOR CUSTNO INTEGER NOT NULL DEFAULT, "Record_Status" FOR RECSTS CHAR(2) CCSID 37 NOT NULL DEFAULT, "Current_Due" FOR DAYSC DECIMAL(9,2) NOT NULL DEFAULT, "DAYS_30" FOR DAYS30 DECIMAL(9,2) NOT NULL DEFAULT, "AMOUNT_O/S_(60_DAYS)" FOR DAYS60 DECIMAL(9,2) NOT NULL DEFAULT, "Customers_Total_Outstanding" FOR CUSTOTOS DECIMAL(11,2) NOT NULL DEFAULT, CONSTRAINT CUSBALF_P PRIMARY KEY(CUSTNO)) RCDFMT CUSBALFR; LABEL ON TABLE CUSBALF IS 'Customer Balances FIle'; LABEL ON COLUMN CUSBALF (CUSTNO IS 'Cust. No.' , RECSTS IS 'R/S ' , DAYSC IS 'Current Due' , DAYS30 IS '30 Days ' , DAYS60 IS 'Outstanding 60 Days' , CUSTOTOS IS 'Customers Total Outstanding' ); LABEL ON COLUMN CUSBALF (CUSTNO TEXT IS 'Customer Number' , RECSTS TEXT IS 'Record Status' , DAYSC TEXT IS 'Current Due' , DAYS30 TEXT IS '30 Days' , DAYS60 TEXT IS 'Amount O/S (60 Days)' , CUSTOTOS TEXT IS 'Customers Total Outstanding' );