/**
  * Set ExpenseAmt - Callout
  *
  * @param oldExpenseAmt old value
  * @param newExpenseAmt new value
  * @param windowNo window
  * @throws Exception
  */
 @UICallout
 public void setExpenseAmt(String oldExpenseAmt, String newExpenseAmt, int windowNo)
     throws Exception {
   if (newExpenseAmt == null || newExpenseAmt.length() == 0) return;
   BigDecimal ExpenseAmt = new BigDecimal(newExpenseAmt);
   super.setExpenseAmt(ExpenseAmt);
   setAmt(windowNo, "ExpenseAmt");
 } //	setExpenseAmt