printname method

dynamic printname()

pretty print the account name, olb WB style fibu had 4 char wide account fields... .

Implementation

printname() {
  String fn = (name == "no name") ? "0" : name;
  return (sprintf("%#4s", [fn]));
}