Skip to main content

Catalogo alp_cat_fnd_lookups

1. Modulo

Fundacionales (FND)


2. Descripción

Catálogo maestro de llaves, códigos de referencia, listas de selección y valores del sistema.


3. Columnas

#ColumnaDescripción
1typeTipo de lookup (Lookup Type) que clasifica el conjunto de valores.
2codeCódigo del valor del lookup. Identificador técnico del valor dentro del tipo.
3meaningDescripción legible del valor del lookup en idioma inglés (language = 'E').
4set_idIdentificador del conjunto de valores del lookup (Lookup Set ID).
5tagEtiqueta adicional del lookup utilizada para mapeos o integraciones externas.
6view_appl_idIdentificador de la aplicación asociada al lookup (View Application ID).
7enabledIndicador de si el valor del lookup está habilitado (Y/N).
8start_dateFecha de inicio de vigencia del valor del lookup.
9end_dateFecha de fin de vigencia del valor del lookup.

4. Querys

select flv.lookuptype type
, flv.lookupcode code
, flvt.meaning
, flv.setid set_id
, flv.tag
, flv.viewapplicationid view_appl_id
, flv.enabledflag enabled
, flv.startdateactive start_date
, flv.enddateactive end_date
from cat_master_oracle_fusion.sch_gold_layer.fscm_fin_aes_lookupvaluesextractpvo flv
join cat_master_oracle_fusion.sch_gold_layer.fscm_fin_aes_lookupvaluestlextractpvo flvt
on flv.lookuptype = flvt.lookuptype
and flv.lookupcode = flvt.lookupcode
and flv.viewapplicationid = flvt.viewapplicationid
and flvt.language = 'E'