Files
Customer/onces/ASDL/ASDL9.sql
Maarten van der Heide 4aa5ff46c8 ASDL#37190 CUST01-notijob/Graffiti verwijderen afgemeld naar administratie
svn path=/Customer/; revision=30145
2016-07-26 14:00:20 +00:00

45 lines
1.4 KiB
SQL

-- Customer specific once-script ASDL9.
--
-- (c) 2016 Facilitor B.V.
--
-- Support: +31 53 4800700
SET ECHO ON
SET DEFINE ON
column fcltlogfile new_value fcltlogfile NOPRINT;
select UPPER(USER) || '_ASDL9.lst' as fcltlogfile from dual;
spool &fcltlogfile
SET DEFINE OFF
-- ASDL#37190
INSERT INTO fac_srtnotificatie (fac_srtnotificatie_code,
fac_srtnotificatie_mode,
fac_srtnotificatie_oms,
fac_srtnotificatie_xmlnode,
fac_srtnotificatie_url,
fac_srtnotificatie_groep)
VALUES ('CUST01',
2,
'Melding ##KEY## afgemeld',
'melding',
NULL,
0);
INSERT INTO fac_notificatie_job (fac_notificatie_job_view,
fac_notificatie_job_oms,
fac_notificatie_job_mode,
fac_notificatie_job_flags,
fac_notificatie_job_interval,
fac_notificatie_job_nextrun)
VALUES ('ASDL_V_NOTI_ADMINISTRATIE',
'Notificatie naar administratie',
0,
1,
24,
NULL);
COMMIT;
BEGIN adm.systrackscriptid('$Id$'); END;
/
SPOOL OFF
@asdl.sql