Files
Customer/onces/DENB/denb1.sql
Peter Koerhuis 9502e50ce7 SVN rename (alles uppercase)
svn path=/Customer/; revision=21209
2014-04-02 15:12:07 +00:00

44 lines
1.2 KiB
SQL

-- Customer specific once-script DENB1.
--
-- (c) 2010 SG|facilitor bv
-- $Revision$
-- $Id$
--
-- Support: +31 53 4800700
SET ECHO ON;
SPOOL xdenb1.lst;
SET DEFINE OFF;
/* Formatted on 27-1-2010 17:24:48 (QP5 v5.115.810.9015) */
UPDATE prs_werkplek w
SET w.prs_werkplek_omschrijving =
(SELECT alg_ruimte_nr || '/' || w.prs_werkplek_volgnr
FROM alg_ruimte
WHERE alg_ruimte_key = w.prs_alg_ruimte_key);
-- Toevoegen rapportage / fac_functie_key Beheer:Gebruikersbeheer (= 61)
INSERT INTO FAC_USRRAP
(fac_usrrap_omschrijving, fac_usrrap_view_name,
fac_usrrap_in_huidige_locatie,
fac_usrrap_template, fac_usrrap_macro,
fac_usrrap_vraagbegindatum, fac_usrrap_vraageinddatum,
fac_usrrap_functie,
fac_usrrap_info,
fac_functie_key, fac_usrrap_autorefresh
)
VALUES ('Maandtotalen', 'denb_v_rap_res_maandtotalen',
NULL,
NULL, NULL,
0, 0,
0,
'Overzicht van cateringkosten per maand.',
61,
0
);
COMMIT;
SPOOL OFF;
@denb.sql