public void entitlement() throws Exception {
Connection connection = getEntitlementConnection();
if (connection == null)
return;
EntitlementTablePanel panel = new EntitlementTablePanel(connection);
if (panel.getReady() == false)
return;
new CommonDlg(Globals.masterWindow, Phrase.get("TX_ENTITLEMENT_TABLE"), panel);
connection.close();
}