return this.getPurchaseOrderList(individualID, dl);
} else {
PurchaseOrderList returnDL = null;
AccountListHome aa = (AccountListHome)CVUtility.getHomeObject(
"com.centraview.account.accountlist.AccountListHome", "AccountList");
try {
HashMap hm = new HashMap();
hm.put("startATparam", new Integer(startATparam));
hm.put("EndAtparam", new Integer(EndAtparam));
hm.put("searchString", searchString);
hm.put("sortmem", sortColumn);
hm.put("sortType", new Character('A'));
AccountList remote = (AccountList)aa.create();
remote.setDataSource(this.dataSource);
try {
returnDL = remote.getPurchaseOrderList(individualID, hm);
} catch (Exception e) {