77 lines
2.6 KiB
SQL
77 lines
2.6 KiB
SQL
- Customer specific once-script
|
|
|
|
SET ECHO ON
|
|
SPOOL xNYBU31.lst
|
|
SET DEFINE OFF
|
|
|
|
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,
|
|
fac_export_app_prefix)
|
|
VALUES ('NOTI_GOEDK_CAT',
|
|
'Notificatie voor het goedkeuren van catering',
|
|
75,
|
|
'd:\Apps\Facilitor\ftp_sites\LocalUser\NYBUftp\CAT',
|
|
'noti_goedk_cat',
|
|
'.csv',
|
|
'.log',
|
|
0,
|
|
'_yyyymmdd_HHMM',
|
|
'nybu');
|
|
|
|
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,
|
|
fac_export_app_prefix)
|
|
VALUES ('RES_CAT',
|
|
'Catering voorstel voor doorbelasting/facturatie',
|
|
75,
|
|
'd:\Apps\Facilitor\ftp_sites\LocalUser\NYBUftp\CAT',
|
|
'res_cat',
|
|
'.csv',
|
|
'.log',
|
|
2,
|
|
'_yyyymmdd_HHMM',
|
|
'nybu');
|
|
|
|
|
|
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,
|
|
fac_export_app_prefix)
|
|
VALUES ('RES_CAT_VERWERK',
|
|
'Bevriezen catering voorstel voor doorbelasting/facturatie',
|
|
75,
|
|
'd:\Apps\Facilitor\ftp_sites\LocalUser\NYBUftp\CAT',
|
|
'res_cat_verwerk',
|
|
'.csv',
|
|
'.log',
|
|
2,
|
|
'_yyyymmdd_HHMM',
|
|
'nybu');
|
|
|
|
|
|
|
|
BEGIN adm.systrackscriptId('$Id$'); END;
|
|
/
|
|
COMMIT;
|
|
|
|
SPOOL OFF |