All Downloads are FREE. Search and download functionalities are using the official Maven repository.

expsigladb.View.PZ_COSTI_DIP_PREV_PRE_VIEW.sql Maven / Gradle / Ivy

There is a newer version: 6.6.11
Show newest version
--------------------------------------------------------
--  DDL for View PZ_COSTI_DIP_PREV_PRE_VIEW
--------------------------------------------------------

  CREATE OR REPLACE FORCE VIEW "PZ_COSTI_DIP_PREV_PRE_VIEW" ("ESERCIZIO", "TI_PREV_CONS", "MATRICOLA", "TI_APPARTENENZA", "TI_GESTIONE", "CD_ELEMENTO_VOCE", "CD_UNITA_ORGANIZZATIVA", "IM_A1", "IM_A2", "IM_A3", "IM_ONERI_CNR_A1", "IM_ONERI_CNR_A2", "IM_ONERI_CNR_A3", "IM_TFR_A1", "IM_TFR_A2", "IM_TFR_A3") AS 
  SELECT  A.anno_gest+1, 
        'P', 
        A.matricola, 
        'D', 
        'S', 
        A.voce_cia, 
        DECODE(A.tit, NULL, NULL, SUBSTR(A.tit,1,3) || '.' || SUBSTR(A.tit,4,3)), 
        DECODE(A.anno_gest + 1, A.anno_prev, A.impo_annuo, 0), 
        DECODE(A.anno_gest + 2, A.anno_prev, A.impo_annuo, 0), 
        DECODE(A.anno_gest + 3, A.anno_prev, A.impo_annuo, 0), 
        DECODE(A.anno_gest + 1, A.anno_prev, A.oneri_cnr, 0), 
        DECODE(A.anno_gest + 2, A.anno_prev, A.oneri_cnr, 0), 
        DECODE(A.anno_gest + 3, A.anno_prev, A.oneri_cnr, 0), 
        DECODE(A.anno_gest + 1, A.anno_prev, A.tfr, 0), 
        DECODE(A.anno_gest + 2, A.anno_prev, A.tfr, 0), 
        DECODE(A.anno_gest + 3, A.anno_prev, A.tfr, 0) 
FROM    CNR_COSTI_PREV A
;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy