- Display Name
Req Cancelled [BB-NoDim]
- Internal Name
E_REPORT_WS_PAGE_REQ_CANCEL
- Advanced Mode only
- True
- Description
- Returns True or False for each hit
- ImageSrc
- default.gif
- DisplayInPortal
- false
- Trigger
PageStart
JavaScript™: (Advanced Mode only)
// Req Cancelled [BB-NoDim]
function %%NameSpace%%$%%InternalName%%()
{ var rc = $P['TL.REQ_CANCELLED'].firstValue().toLowerCase();
if (rc == 'false') rc = '';
else if ((rc == 'true') || (rc == 'client')) rc = 'Client';
else if (rc == 'server') rc = 'Server';
if (rc != '') { $F.setFact("%%NameSpace%%.%%Fact1%%", rc);
} }