WELK#19699: CUST-Notificatie en Notificatie-JOB

svn path=/Customer/trunk/; revision=14612
This commit is contained in:
Marcel Bourseau
2011-01-27 11:09:24 +00:00
parent 15a70a417e
commit 0f54b17413

36
WELK/Once/welk07.sql Normal file
View File

@@ -0,0 +1,36 @@
-- Customer specific once-script
-- WELK (Welkom, inmiddels Elkien)
-- (c) 2010 SG|facilitor bv
-- $Revision: 1 $
-- $Modtime: 27-01-11 13:04 $
--
-- 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 $', 1); END;
/
COMMIT;
SPOOL OFF;