Function allowing to write a workspace as a collection of xml files readable by JDemetra+ Graphical User Interface.
Examples
dir <- tempdir()
jws <- jws_new()
jsap1 <- jws_sap_new(jws, "sap1")
y <- rjd3toolkit::ABS$X0.2.09.10.M
# \donttest{
add_sa_item(jsap1, name = "serie_1", x = y, rjd3x13::x13_spec())
save_workspace(jws, file.path(dir, "workspace.xml"))
#> Warning: A workspace already exists. To overwrite it, use the argument `replace = TRUE`.
#> [1] FALSE
# }