.besrp file - specifying evaluation period(?)

(imported topic written by rad.ricka91)

Is there any way to include the evaluation period int the XML file?

Thanks,

Rad

(imported comment written by jessewk)

Rad,

You can do something like this:

<?xml version=
"1.0" encoding=
"UTF-8"?> <BES xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation=
"BES.xsd"> <Analysis> <Title>test</Title> <Description><![CDATA[test analysis]]></Description> <Relevance>true</Relevance> <Property Name=
"test" ID=
"1" EvaluationPeriod=
"PT15M">now</Property> </Analysis> </BES>

Where EvaluationPeriod must match the follwoing pattern: P(

0-9

+D)?(T(

0-9

+H)?(

0-9

+M)?(

0-9

+(.

0-9

{1,6})?S)?)?

So values like PT30M, PT1H, and P1D will work.

If you’re not sure, a good thing to do is to make a test analysis in the BES Console that contains a property with the period you’d like to use. Then export the analysis and look at the XML file.