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