Return to:
Database Reference Home Page
Return to:
Table Definitions Master List
*Table Name*
ar_detail_comment_master
*Description*
A/R detail comment codes
*Schema*
CREATE TABLE ar_detail_comment_master (
"company_id" int NOT NULL -- Company ID
REFERENCES company_master (company_id),
"comment_code" int, -- User determined comment code
"description" varchar(64), -- Description
"sort_order" int, -- Sort order
"date_added" timestamp without time zone, -- Date record added
"added_by" varchar(16), -- Employee code of who added record
PRIMARY KEY (company_id,comment_code)
);
There are no comments on this page. [Add comment]