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

45 lines
1.2 KiB
SQL

-- Customer specific once-script
-- BiOns
-- (c) 2010 SG|facilitor bv
-- $Revision$
-- $Id$
--
-- Support: +31 53 4800710
SET ECHO ON;
SPOOL bons01.lst;
-- SALARISrapport voor de gemaakte uren binnen 1 PERIODE - Unit4 rapport met specifieke BONS-kenmerken/waarden:
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
)
SELECT 'Salaris - Unit 4: Per periode',
'bons_v_rap_salaris_unit4',
NULL,
NULL,
NULL,
0,
0,
0,
'Salarisrapport: de gemaakte zorguren, ziekte, verlof en declaraties in gekozen periode',
fac_functie_key,
0
FROM fac_functie WHERE fac_functie_code = 'WEB_MLDBAC';
BEGIN adm.systrackscript('$Workfile: bons01.sql $', '$Revision$', 1); END;
/
COMMIT;
SPOOL OFF;