// ==================================
// Replace 0 or more occurancees of criteria code parameter with value
// ==================================
while (myStatement.toString().indexOf("$" + oneCriteriaCode) != - 1)
{
myStatement = new SuperString(myStatement.replace("$" + oneCriteriaCode,
// BUEROBYTE: Don't cast to String, convert to String!
// (String) criteriaInput.get(oneCriteriaCode)));
criteriaInput.get(oneCriteriaCode).toString()));