BOFO#16488

svn path=/Customer/trunk/; revision=14020
This commit is contained in:
Arthur Egberink
2009-12-23 07:43:26 +00:00
parent c12ac605d8
commit d6e50c2d6a
2 changed files with 24 additions and 0 deletions

View File

24
BOFO/Once/BOFO6.sql Normal file
View File

@@ -0,0 +1,24 @@
-- BOFO6.sql
-- Eenmalig script om rapportages aan te maken.
--
SET ECHO ON
SET DEFINE OFF;
SPOOL xbofo6.lst
PROMPT $Revision: 1 $
insert into fac_usrrap (fac_usrrap_omschrijving, fac_usrrap_view_name, fac_usrrap_functie, fac_functie_key)
values ('Verlof: totaal overzicht', 'bofo_v_rap_verlof_totaal', 1, 66);
insert into fac_usrrap (fac_usrrap_omschrijving, fac_usrrap_view_name, fac_usrrap_functie, fac_functie_key)
values ('Verlof: detail gegevens', 'bofo_v_rap_verlof_detail', 1, 66);
insert into fac_usrrap (fac_usrrap_omschrijving, fac_usrrap_view_name, fac_usrrap_functie, fac_functie_key)
values ('Verlof: medewerker', 'bofo_v_rap_verlof_medew', 1, 67);
COMMIT;
SPOOL OFF