37 lines
1.1 KiB
SQL
37 lines
1.1 KiB
SQL
-- Customer specific once-script
|
|
-- WELK (Welkom, inmiddels Elkien)
|
|
-- (c) 2010 SG|facilitor bv
|
|
-- $Revision$
|
|
-- $Id$
|
|
--
|
|
-- Support: +31 53 4800710
|
|
|
|
SET ECHO ON;
|
|
SPOOL welk07.lst;
|
|
|
|
-- Notificatie JOB die elk heel uur afgaat tijdens kantooruren van 7.00 t/m 18.00 u (zo is ook gen_notify op SAAS geconfigureerd)
|
|
INSERT INTO fac_notificatie_job
|
|
(fac_notificatie_job_view,
|
|
fac_notificatie_job_oms,
|
|
fac_notificatie_job_interval, fac_notificatie_job_mode, fac_notificatie_job_nextrun
|
|
)
|
|
VALUES ('welk_v_noti_receptie',
|
|
'MLD: Notificatie van nieuwe meldingen voor de receptie',1, 3, trunc (SYSDATE, 'HH')
|
|
);
|
|
|
|
INSERT INTO fac_srtnotificatie
|
|
(fac_srtnotificatie_code, fac_srtnotificatie_mode,
|
|
fac_srtnotificatie_oms, fac_srtnotificatie_xmlnode,
|
|
fac_srtnotificatie_groep
|
|
)
|
|
VALUES ('CUST01', 3,
|
|
'Facilitorbericht: nieuwe melding ##KEY## ter acceptatie', 'melding', 0
|
|
);
|
|
|
|
|
|
BEGIN adm.systrackscript('$Workfile: welk07.sql $', '$Revision$', 1); END;
|
|
/
|
|
|
|
COMMIT;
|
|
SPOOL OFF;
|