Files
Customer/onces/UWVA/uwva78.sql
Peter Koerhuis 3b8d7f1dcc Migratie once-scripts van /branch naar /onces
svn path=/Customer/; revision=21207
2014-04-02 13:57:31 +00:00

96 lines
2.5 KiB
SQL

-- Customer specific once-script UWVA78.
--
-- (c) 2013 SG|facilitor bv
-- $Revision$
-- $Id$
--
-- Support: +31 53 4800700
SET ECHO ON
SPOOL xuwva78.lst
SET DEFINE OFF
-- UWVA#23457: Clean-up deprecated reports, exports and imports!
-- misc/VERH_OPDR-export.
DROP PROCEDURE uwva_select_verh_opdr;
DROP PROCEDURE uwva_export_verh_opdr;
DROP VIEW uwva_v_export_verh_opdr;
DROP VIEW uwva_v_verh_opdr
-- fin/EXP factuurvoorstel catalogusprodukten detail + EXP factuurvoorstel catalogusprodukten.
DELETE FROM fac_usrrap
WHERE fac_usrrap_key IN (364, 365);
DROP VIEW uwva_v_rap_catlog_factuur;
DROP VIEW uwva_v_rap_catlog_fac_detail;
DROP VIEW uwva_v_catlog_fac_detail
-- fin/HOLD STATS: Geexporteerde opdrachtregels.
DELETE FROM fac_usrrap
WHERE fac_usrrap_key = 101;
DROP VIEW UWVA_V_EXPORTED_KOSTEN;
-- fin/ZZ CONTROL: Rapportage exportdata.
DELETE FROM fac_usrrap
WHERE fac_usrrap_key = 229;
DROP VIEW UWVA_V_VERWERKT;
-- misc/SC: Achterstand reserveringen catering.
DELETE FROM fac_usrrap
WHERE fac_usrrap_key = 278;
DROP VIEW uwva_v_rap_art_not_exp;
DROP VIEW uwva_v_art_not_exp
-- misc/???
DROP VIEW UWVA_V_FE_RES_AFD_GEBONDEN;
-- misc/???
DROP VIEW UWVA_V_RES_FUTURE_RAP;
DROP VIEW uwva_v_res_future;
-- prs/ZZZ BEHEER: Overzicht budgethouders verwijderd.
DELETE FROM fac_usrrap
WHERE fac_usrrap_key = 367;
DROP VIEW UWVA_V_VERWIJDERDE_BUDHETH;
-- prs/ZZ IMP-KPN: Afwijkende kostenplaatsen.
DELETE FROM fac_usrrap
WHERE fac_usrrap_key = 124;
DROP VIEW uwva_v_kpn_05_afwkostenplaats;
-- misc/UWVA_RAP.uwva_rap_ondersteuning (ZZ BEHEER: Ondersteuning)/in UWVA_RAP-package.
DELETE FROM fac_usrrap
WHERE fac_usrrap_key = 398;
-- misc/ZZ BEHEER: Gebruikers per KZ-rol laatste 4 weken + ZZ BEHEER: Gebruikers KZ laatste 4 weken.
DELETE FROM fac_usrrap
WHERE fac_usrrap_key IN (325, 326);
DROP VIEW uwva_v_stats_active_kz_rol;
DROP VIEW uwva_v_stats_active_kz;
COMMIT;
-- Nieuwe CUST-notificatie voor notificatie naar budgethouder
INSERT INTO fac_srtnotificatie
(fac_srtnotificatie_code,
fac_srtnotificatie_mode,
fac_srtnotificatie_oms,
fac_srtnotificatie_xmlnode,
fac_srtnotificatie_url)
VALUES
('CUST21',
2,
'Medewerker uit dienst (met verplichtingen)',
'perslid',
'');
BEGIN adm.systrackscript('$Workfile: uwva78.sql $', '$Revision$', 1); END;
/
SPOOL OFF
@@uwva_prs.sql
@@uwva_fin.sql
@@uwva_misc.sql
BEGIN fac.registercustversion('UWVA', 78); END;
/
COMMIT;