Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Exporting a report can be invoked through the command line.

Code Block
reportexport

...


-repo <repo name>

...


-n <report name>

...


-m <path to model's selection file>

...


-o <output csv file path>

Example

Code Block
java -Xmx512m -XX:MaxMetaspaceSize=256m -splash: -jar WhereScape-3D-HEAD-bundle.jar reportexport -repo "Local repository" -n "Data type usage" -m "C:\temp\Selection_File.xml" -o "C:\temp\Report.csv"

Anchor
_model_selection_file
_model_selection_file
Model selection file

The models to be included within the report are defined in a model selection file.

Code Block
<?xml version="1.0" encoding="UTF-8"?>

...


<report_settings xmlns="http://www.wherescape.com/xml/3D" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wherescape.com/xml/3D ./report_settings_1.xsd">

...


  <xml_version>1</xml_version>

...


  <repo name="repo1 name">

...


    <category name="category name">

...


       <model name="model name">

...


          <version>version name</version>

...


          <version>version2 name</version>

...


       </model>

...


    </category>

...


 </repo>

...


 <repo name="repo2 name">

...


    <category name="category name">

...


       <model name="model name">

...


          <version>version name</version>

...


       </model>

...


    </category>

...


    <category name="category2 name">

...


       <model name="model name">

...


          <version>version name</version>

...


       </model>

...


    </category>

...


 </repo>

...


</report_settings>