45 lines
1.3 KiB
SQL
45 lines
1.3 KiB
SQL
-- Customer specific once-script SGGR
|
|
--
|
|
-- (c) 2014 Facilitor bv
|
|
-- $Revision$
|
|
-- $Id$
|
|
--
|
|
-- Support: +31 53 4800710
|
|
|
|
SET ECHO ON
|
|
SPOOL sggr#.lst
|
|
SET DEFINE OFF
|
|
|
|
--- Specifieke notificatie voor overurensheets
|
|
INSERT INTO fac_srtnotificatie (fac_srtnotificatie_code,
|
|
fac_srtnotificatie_mode,
|
|
fac_srtnotificatie_oms,
|
|
fac_srtnotificatie_xmlnode,
|
|
fac_srtnotificatie_url,
|
|
fac_srtnotificatie_groep)
|
|
VALUES ('CUST07',
|
|
0,
|
|
'Overurensheet ##NAAM##',
|
|
'melding',
|
|
NULL,
|
|
0);
|
|
|
|
--- Specifieke notificatie voor aanvragen
|
|
INSERT INTO fac_srtnotificatie (fac_srtnotificatie_code,
|
|
fac_srtnotificatie_mode,
|
|
fac_srtnotificatie_oms,
|
|
fac_srtnotificatie_xmlnode,
|
|
fac_srtnotificatie_url,
|
|
fac_srtnotificatie_groep)
|
|
VALUES ('CUST08',
|
|
0,
|
|
'Aanvraag ##STDMELDINGOMSCHR##',
|
|
'melding',
|
|
NULL,
|
|
0);
|
|
|
|
BEGIN adm.systrackscriptId('$Id$'); END;
|
|
/
|
|
SPOOL OFF
|
|
@sggr.sql
|
|
|