WRITE

You can use the statement WRITE to save the contents of the DATABACKBONE into an XML file on the KCM Core server.

The following is a definition of the WRITE statement.

WRITE datastructure
  TO file

The datastructure is a Data Structure variable that is written to the XML file.

In the following example, the program writes the Data Backbone to the file named saved_data.xml. The keyword TO specifies the file in which the data is written.

WRITE _data TO session_path + "\saved_data.xml"