- Display Name
Hit Size Max (bytes) [BB]
- Internal Name
E_REPORT_WS_SESSION_PAGE_SIZE_MAX
- Advanced Mode only
- True
- Description
- Maximum hit size in bytes (end of session)
- ImageSrc
- default.gif
- DisplayInPortal
- false
- Trigger
SessionEnd
JavaScript™ (Advanced Mode only)
// Hit Size Max (bytes) [BB]
function %%NameSpace%%$%%InternalName%%()
{ var pageSize = 0;
var f = $F.getFact("TL.F_E_REPORT_WS_PAGE_SIZE_MAX_DG_NONE");
if (f != null) { pageSize = f.NumericValue;
} pageSize = pageSize.toFixed(4);
$F.setFact("%%NameSpace%%.%%Fact1%%", pageSize);
}