35 lines
1013 B
Batchfile
35 lines
1013 B
Batchfile
REM GEN_EXPORT_PWRBI.BAT
|
|
REM
|
|
REM BLCC
|
|
REM
|
|
REM Exporteert 6-tal PowerBI-bestanden als CSV (BLCC#41180 en BLCC#42928).
|
|
REM
|
|
REM Context : roep deze file aan indien nodig, of schedule deze
|
|
REM Vereist : de randvoorwaarde voor het gebruik van gen_export
|
|
REM
|
|
REM $Revision$
|
|
REM $Id$
|
|
REM
|
|
REM (c) 2016 Facilitor B.V.
|
|
REM
|
|
|
|
REM ================================================== cleanup
|
|
copy .\POWERBI\*.csv .\POWERBI\BACKUP
|
|
del .\POWERBI\*.csv
|
|
|
|
REM ================================================== create exportfile(s)
|
|
CALL ..\..\..\utils\gen_export\gen_export.bat PWRBI_CAT
|
|
|
|
CALL ..\..\..\utils\gen_export\gen_export.bat PWRBI_OPDR
|
|
|
|
CALL ..\..\..\utils\gen_export\gen_export.bat PWRBI_MLDTRK
|
|
|
|
CALL ..\..\..\utils\gen_export\gen_export.bat PWRBI_ORDTRK
|
|
|
|
CALL ..\..\..\utils\gen_export\gen_export.bat PWRBI_MLD
|
|
|
|
CALL ..\..\..\utils\gen_export\gen_export.bat PWRBI_KOSTEN
|
|
|
|
REM ================================================== transfer file to BLCC ftp
|
|
ftp.exe -ni -s:ftp_blcc2pwrbi.scr
|