R/limsscript_create_archief_labels_bat.R
create_archief_labels_bat.Rd
Creëer het .bat bestand waarin R de opdracht krijgt de archieflabels Access DB in te vullen
create_archief_labels_bat(bat_file, db_location, r_location, r_script_location)
the name including path where the .bat file should be created
the name including path to the database for the printable raport
the path to the R-32 bit version. (paste0(R.home, "/bin/i386/Rscript.exe")) is often OK
the name including path where the .R script is that the .bat file will execute
in het gekozen Access bestand wordt de tabel tblTemp ingevuld. De View QueryEtikettenPieter zal deze data dan aanspreken en als bron dienen voor een voorgedefinieerd Access rapportje.
if (FALSE) { # \dontrun{
db_locatie <- system.file("extdata", "Archief_Labels_voorbeeldDB.accdb",
package = "inbolims"
)
r_locatie <- paste0(R.home, "/bin/i386/Rscript.exe")
bat_bestand <- "Archieflabels.bat"
r_script <- system.file("extdata", "Archief_Labels.R", package = "inbolims")
create_archief_labels_bat(bat_bestand, db_locatie, r_locatie, r_script)
} # }