Diccionario de datos de los modelos de COÉXITO
| 🏠 Menú principal | ← Volver a tablas |
Base de datos origen: ADW COEXITO
Descripción: Español: Almacena información de las cuentas contables e indica si tienen restricción de disponibilidad. Se utiliza para el control de roles y acceso a la información en el tablero PPTO_DISPONIBLE. English: Stores general ledger account information and indicates whether each account has an availability restriction. It is used for role-based control and information access in the PPTO_DISPONIBLE dashboard.
| # | Columna | Tipo | Nulo | Default | Comentario |
|---|---|---|---|---|---|
| 1 | CUENTA_CONTABLE | VARCHAR2(20) | NO | ||
| 2 | DISPONIBLE | VARCHAR2(2) | NO |
DISPONIBLE IN ('SI', 'NO')"CUENTA_CONTABLE" IS NOT NULL"DISPONIBLE" IS NOT NULLCREATE TABLE "DWADW"."LISTA_CUENTAS"
( "CUENTA_CONTABLE" VARCHAR2(20) COLLATE "USING_NLS_COMP" NOT NULL ENABLE,
"DISPONIBLE" VARCHAR2(2) COLLATE "USING_NLS_COMP" NOT NULL ENABLE,
CONSTRAINT "LISTA_CUENTAS_DISP_CK_" CHECK (DISPONIBLE IN ('SI', 'NO')) ENABLE,
CONSTRAINT "LISTA_CUENTAS_PK_" PRIMARY KEY ("CUENTA_CONTABLE")
USING INDEX ENABLE
) DEFAULT COLLATION "USING_NLS_COMP" ;
COMMENT ON TABLE "DWADW"."LISTA_CUENTAS" IS 'Español: Almacena información de las cuentas contables e indica si tienen restricción de disponibilidad. Se utiliza para el control de roles y acceso a la información en el tablero PPTO_DISPONIBLE.
English: Stores general ledger account information and indicates whether each account has an availability restriction. It is used for role-based control and information access in the PPTO_DISPONIBLE dashboard.';
CREATE UNIQUE INDEX "DWADW"."LISTA_CUENTAS_PK_" ON "DWADW"."LISTA_CUENTAS" ("CUENTA_CONTABLE")
;