- Display Name
Fact Count [BB]
- Internal Name
E_REPORT_WS_SESSION_FACT_COUNT
- Advanced Mode only
- True
- Description
- Total count of written facts (end of session)
- ImageSrc
- default.gif
- DisplayInPortal
- false
- Trigger
SessionEnd
JavaScript™ (Advanced Mode only)
// Fact Count [BB]
function %%NameSpace%%$%%InternalName%%()
{ var fCount = 0;
for(var f in $F)
{ if(typeof($F[f]) == 'undefined') fCount += $F.factCount(f);
}
$F.setFact("%%NameSpace%%.%%Fact1%%", fCount);
}