/**
  * Callback method invoked when the user has clicked on the insert button
  *
  * @param valueObject empty value object just created: the user can manage it to fill some
  *     attribute values
  */
 public void createValueObject(ValueObject valueObject) throws Exception {
   AccountVO vo = (AccountVO) valueObject;
   vo.setCompanyCodeSys01ACC02(gridFrame.getControlCompaniesCombo().getValue().toString());
   vo.setLedgerCodeAcc01ACC02(gridFrame.getControlLedgerCode().getValue().toString());
   vo.setLedgerDescriptionACC02(gridFrame.getControlLedgerDescr().getValue().toString());
 }