52 lines
1.5 KiB
SQL
52 lines
1.5 KiB
SQL
-- Customer specific once-script WEHK19.
|
|
--
|
|
-- (c) 2013 SG|facilitor bv
|
|
-- $Revision$
|
|
-- $Id$
|
|
--
|
|
-- Support: +31 53 4800700
|
|
SET ECHO ON
|
|
SPOOL xwehk19.lst
|
|
SET DEFINE OFF
|
|
|
|
-- WEHK#26420
|
|
INSERT INTO fac_srtnotificatie
|
|
(fac_srtnotificatie_code, fac_srtnotificatie_mode,
|
|
fac_srtnotificatie_oms, fac_srtnotificatie_xmlnode,
|
|
fac_srtnotificatie_groep
|
|
)
|
|
VALUES ('CUST02', 0,
|
|
'Reminder: ##AANTAL## object(en) x dagen voor inspectiedatum (##SRTGROEP##)', 'deel',
|
|
0
|
|
);
|
|
|
|
INSERT INTO fac_srtnotificatie
|
|
(fac_srtnotificatie_code, fac_srtnotificatie_mode,
|
|
fac_srtnotificatie_oms, fac_srtnotificatie_xmlnode,
|
|
fac_srtnotificatie_groep
|
|
)
|
|
VALUES ('CUST03', 0,
|
|
'*LET OP*: Inspectiedatum van ##AANTAL## object(en) verstreken (##SRTGROEP##)', 'deel',
|
|
0
|
|
);
|
|
|
|
COMMIT;
|
|
|
|
INSERT INTO fac_notificatie_job (fac_notificatie_job_view,
|
|
fac_notificatie_job_oms,
|
|
fac_notificatie_job_interval,
|
|
fac_notificatie_job_mode,
|
|
fac_notificatie_job_flags)
|
|
VALUES ('WEHK_V_NOTI_INSPECTIEREMINDER',
|
|
'Reminders naar verantwoordelijken voor inspecties.',
|
|
168,
|
|
0,
|
|
1);
|
|
|
|
COMMIT;
|
|
|
|
BEGIN adm.systrackscript('$Workfile: wehk19.sql $', '$Revision$', 1); END;
|
|
/
|
|
SPOOL OFF
|
|
@wehk.sql
|