INLO#53904 -- Urendekking export (inlo toevoegen)

svn path=/Customer/; revision=38503
This commit is contained in:
Arthur Egberink
2018-07-13 15:01:45 +00:00
parent 94cf6fc5cc
commit 9394ee1c9c

200
onces/AA/INLO/INLO1.sql Normal file
View File

@@ -0,0 +1,200 @@
-- Customer specific once-script Industrie & Logistiek (INLO)
-- Support: +31 53 4800700
SET ECHO ON
SPOOL xINLO1.lst
SET DEFINE OFF
-- AAXX EXACT
-- AAXX VERWERK_EXACT
-- INLO EXACT_VERKOOP
-- INLO EXACT_VERKOOP_VJ
-- INLO EXACT_UREN
-- INLO VERWERK_EXACT_UREN
-- INLO BUNDEL_CATERING
-- AAXX DAILY_TASK
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 ('EXACT',
'',
66,
'd:\Apps\Facilitor\Webdav\aafm\Productie\INLO\inkoop',
'exact_inlo_',
'.xml',
'.log',
2,
'yyyymmdd',
'AAXX');
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 ('VERWERK_EXACT',
'',
66,
'.\LOG',
'exact_inlo_',
'.csv',
'.log',
2,
'yyyymmdd',
'AAXX');
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 ('EXACT_VERKOOP',
'',
66,
'd:\Apps\Facilitor\Webdav\aafm\Productie\INLO\verkoop',
'exact_vk_inlo_',
'.csv',
'.log',
2,
'yyyymmdd',
'INLO');
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 ('EXACT_VERKOOP_VJ',
'',
66,
'd:\Apps\Facilitor\Webdav\aafm\Productie\INLO\verkoop',
'exact_vk_inlo_vj_',
'.csv',
'.log',
2,
'yyyymmdd',
'INLO');
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 ('EXACT_UREN',
'',
66,
'd:\Apps\Facilitor\Webdav\aafm\Productie\INLO\uren',
'inlo_exact_uren_',
'.xml',
'.log',
2,
'yyyymmdd',
'INLO');
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 ('VERWERK_EXACT_UREN',
'',
66,
'.\LOG',
'inlo_vw_exact_uren_',
'.csv',
'.log',
2,
'yyyymmdd',
'INLO');
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 ('BUNDEL_CATERING',
'',
66,
'.\LOG',
'catering_inlo_',
'.csv',
'.log',
2,
'yyyymmdd',
'INLO');
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 ('DAILY_TASK',
'',
66,
'.\LOG',
'daily_task_',
'.csv',
'.log',
0,
'yyyymmdd',
'AAXX');
BEGIN adm.systrackscriptId('$Id$'); END;
/
commit;
SPOOL OFF
@inlo.sql
SET ECHO OFF