This table provides a list of valid financial transaction element types.
Source romber_financial_transaction_element_types_tbl.sql
create table romber_financial.transaction_element_types ( financial_transaction_element_type_code romber_base.generic_code not null, financial_transaction_element_type_id romber_financial.transaction_element_type_id not null default nextval ( 'romber_base.generic_id_seq' ), financial_transaction_element_type_name romber_base.generic_name not null, summary_or_not boolean not null );
Source romber_financial_transaction_element_types_pk.sql
alter table romber_financial.transaction_element_types add constraint romber_financial_transaction_element_types_pk primary key ( financial_transaction_element_type_id );
Source romber_financial_transaction_element_types_uk1.sql
alter table romber_financial.transaction_element_types add constraint romber_financial_transaction_element_types_uk1 unique ( financial_transaction_element_type_code );
Source romber_financial_transaction_element_types_load.sql
insert into romber_financial.transaction_element_types ( financial_transaction_element_type_code, financial_transaction_element_type_id, financial_transaction_element_type_name, summary_or_not ) values ( '', 0, '', false );