Table a_currency_language
Description:
Describes what is to be displayed for a currency and language combination when displaying the amount as text.
PRIMARY KEY
a_currency_code_c
varchar (16) NOT NULL
This defines which currency is being used a_currency
p_language_code_c
varchar (20) NOT NULL
This is the code used to identify a language. p_language

a_unit_label_singular_c
varchar (32)
The currency unit label when the amount is 1
a_unit_label_plural_c
varchar (32)
The currency unit label when the amount is > 1
a_special_code_c
varchar (32)
This is needed to determine the gender in some languages.
a_decimal_options_c
varchar (24)
Describes what to do with the decimal when representing it as text. Not to display, display as text or as a numeric
a_decimal_label_singular_c
varchar (32)
The currency decimal label when the amount is 1
a_decimal_label_plural_c
varchar (32)
The currency decimal label when the amount is > 1
s_date_created_d
date default: CURRENT_DATE
The date the record was created.
s_created_by_c
varchar (20)
User ID of who created this record. s_user
s_date_modified_d
date
The date the record was modified.
s_modified_by_c
varchar (20)
User ID of who last modified this record. s_user
s_modification_id_t
timestamp default: CURRENT_TIMESTAMP
This identifies the current version of the record.


FOREIGN KEY
a_currency_language_fk1: a_currency_code_c => a_currency
a_currency_language_fk2: p_language_code_c => p_language
a_currency_language_fkcr: s_created_by_c => s_user
a_currency_language_fkmd: s_modified_by_c => s_user