Besaction list last report time,

Any way to list only server which has last report time < 1 day.

<?xml version="1.0" encoding="UTF-8"?>
<BESAPI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="BESAPI.xsd">
        <Query Resource="(name of computer of it, ids of action of it, detailed status of it,name of action of it) of results of bes actions whose (id of source fixlet of it = 1725100  AND now - time issued of it &lt; 12 * day  AND last report time of it &lt; 1 * day)">
                <Result></Result>
                <Error>The operator "last report time" is not defined.</Error>
        </Query>
</BESAPI>

Yes, but the ‘last report time’ is a property of the Computer, not the Action.
You can walk back from the ‘bes action result’ to the ‘bes computer’.
I can’t test right now but give this a try

(name of computer of it, ids of action of it, detailed status of it,name of action of it) of results whose (now - last report time of computer of it < 1 * day) of bes actions whose (id of source fixlet of it = 1725100 AND now - time issued of it < 12 * day )

1 Like

yay it works… thanks.

<?xml version="1.0" encoding="UTF-8"?>
<BESAPI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="BESAPI.xsd">
        <Query Resource="(name of computer of it, ids of action of it, detailed status of it,name of action of it) of results whose (now - last report time of computer of it &lt; 1 * day) of bes actions whose (id of source fixlet of it = 1725100  AND now - time issued of it &lt; 12 * day )">
                <Result>
                        <Tuple>
1 Like