35 lines
927 B
SQL
35 lines
927 B
SQL
-- Customer specific once-script BLCC1.
|
|
--
|
|
-- (c) 2015 Facilitor B.V.
|
|
--
|
|
-- Support: +31 53 4800700
|
|
SET ECHO ON
|
|
SPOOL xBLCC1.lst
|
|
SET DEFINE OFF
|
|
|
|
-- 92=PRSSYS
|
|
INSERT INTO fac_export_app (fac_export_app_code,
|
|
fac_export_app_oms,
|
|
fac_functie_key,
|
|
fac_export_app_folder,
|
|
fac_export_app_file_prefix,
|
|
fac_export_app_postfix,
|
|
fac_export_app_log_postfix,
|
|
fac_export_app_flags,
|
|
fac_export_app_timestamp)
|
|
VALUES ('PROQURO',
|
|
'Verplichtingen',
|
|
92,
|
|
'.\PROQURO',
|
|
'PROQURO_',
|
|
'.xml',
|
|
'.log',
|
|
0,
|
|
'yymmddhhmiss');
|
|
COMMIT;
|
|
|
|
BEGIN adm.systrackscriptId('$Id$'); END;
|
|
/
|
|
SPOOL OFF
|
|
@blcc.sql
|