Typed Views don't have a getscalar, though you can use the TypedListDAO to get a scalar value.
ResultsetFields fields = new ResultsetFields(1);
fields.DefineField(MyTypedViewFieldIndex.ColumnName, 0, "Summation");
fields[0].AggregateFunctionToApply=AggregateFunction.Sum;
// formulate your predicates here
TypedListDAO dao = new TypedListDAO();
object sumValue = dao.GetScalar(fields, null, null, null, null, true);
Of course, if you want to pass in a filter, you should specify it in the GetScalar call.