Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: DanRosenblattAlso- if you are running this graph in an automated manner, via a BRX, then you can pass arguments to the BRX to execute and have these substituted into parameter values.
For example, in the script to execute the BRX, you can include an export line with 'p_' preceding the name of the parameter:
#!/bin/bash
.
.
export p_RunDate=`date '+%Y%m%d'`
.
.
laeController example.brx
This will make a RunDate parameter available in the graph utilizing your shell's date function. In the graph you could name the output file something like /Path/Output_{{*RunDate*}} in the output node, which will result in a file name of Output_20140113 (if you ran it today). Note the use of * when using parameters from a script instead of the usual ^.