-dumpvars Syntax -dumpvars <context> Description Dumps variables and their values to a text file. Only variables assigned to a value at or before the specified context are written to this file. The context is represented by a hex value listed in the table below. To dump the variables at all contexts, use hex value 0xFFFF. A file with the dumped variables and their values is created in the deployed Project’s working directory. The file name is strs_dump_vars<job_ID>.txt. Comment The Preproc phase (0x01) can only be used in combination with other contexts. Example //Enable dumping of variables assigned Before Process, execution and Preproc phases -dumpvars 0x05 // (0x04 and 0x01) //Enable dumping of variables assigned Before Process, Retrieved/Collect and execution phase -dumpvars 0x06 // (0x04 and 0x02) //Enable dumping of variables assigned After Event, execution and Preproc phases -dumpvars 0x21 // (0x20 and 0x01) Context Preproc 0x01 Retrieved / Collect 0x02 Before Process 0x04 After Process 0x08 Before Event 0x10 After Event 0x20 Before Job 0x40 After Job 0x80
-dumpvars <context>
//Enable dumping of variables assigned Before Process, execution and Preproc phases
-dumpvars 0x05 // (0x04 and 0x01)
//Enable dumping of variables assigned Before Process, Retrieved/Collect and execution phase
-dumpvars 0x06 // (0x04 and 0x02)
//Enable dumping of variables assigned After Event, execution and Preproc phases
-dumpvars 0x21 // (0x20 and 0x01)
0x01
0x02
0x04
0x08
0x10
0x20
0x40
0x80