- Display Name
Rsp Size Total (MB) [BB]
- Internal Name
E_REPORT_WS_SESSION_RSP_TOTAL
- Advanced Mode only
- True
- Description
- Total of Rsp sizes in MB (end of session)
- ImageSrc
- default.gif
- DisplayInPortal
- false
- Trigger
SessionEnd
JavaScript™ (Advanced Mode only)
// Rsp Size Total (MB) [BB]
function %%NameSpace%%$%%InternalName%%()
{ var rspSize = $S.TotalRSPBytes/1048576;
rspSize = rspSize.toFixed(4);
$F.setFact("%%NameSpace%%.%%Fact1%%", rspSize);
}