FCLT#80263 ITIL/IT Service Management 'module' setup

svn path=/Customer/trunk/; revision=63805
This commit is contained in:
Peter Feij
2024-03-05 08:38:08 +00:00
parent 81f21bf6a0
commit 5595592485

View File

@@ -1,56 +0,0 @@
--
-- $Id$
--
-- Script containing the default initialisation of the ITIL module
-- This is an add-on to the Service Management module and provides
-- a complete and standard ITIL compliant process support as a starting point
-- for your ITIL implementation.
DEFINE thisfile = 'ITIL_INI.SQL'
DEFINE dbuser = '^()'
SET ECHO ON
SET DEFINE ON
COLUMN fcltlogfile NEW_VALUE fcltlogfile NOPRINT;
WHENEVER SQLERROR EXIT;
SELECT adm.scriptspoolfile('&dbuser', '&thisfile') AS fcltlogfile FROM DUAL;
WHENEVER SQLERROR CONTINUE;
SPOOL &fcltlogfile
SET DEFINE OFF
------ payload begin ------
-- Settings
-- Vulling
-- Portaal
-- Autorisatiegroepen
INSERT INTO fac_groep(fac_groep_omschrijving) VALUES('MJOB-S: Scenarios');
-- Rechten
-- 1. Eerst MJOB-R (Leesrechten): ALGUSE READ
INSERT INTO fac_groeprechten (fac_groep_key, fac_functie_key,
fac_gebruiker_prs_level_read, fac_gebruiker_prs_level_write, fac_gebruiker_alg_level_read, fac_gebruiker_alg_level_write)
SELECT
(SELECT fac_groep_key FROM fac_groep WHERE fac_groep_upper = 'MJOB-R: LEESRECHTEN'),
fac_functie_key,
-1, 9, -1, 9
FROM fac_functie
WHERE fac_functie_code = 'WEB_ALGUSE';
------ payload end ------
SET DEFINE OFF
BEGIN adm.systrackscriptId ('$Id$', 0); END;
/
COMMIT;
SET ECHO OFF
SPOOL OFF
SET DEFINE ON
PROMPT Logfile of this upgrade is: &fcltlogfile