jButtonAdd.setBounds(483, 7, 126, 28);
jButtonAdd.setEnabled(Common.userList.getUser(Common.sessionID).isModuleAllowed("FRM_ADMIN_MATERIAL_UOM_ADD"));
jButtonAdd.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
JDBMaterialUom m = new JDBMaterialUom(Common.selectedHostID, Common.sessionID);
JDBUom u = new JDBUom(Common.selectedHostID, Common.sessionID);
luom = JOptionPane.showInputDialog(Common.mainForm, lang.get("dlg_Material_UOM_Input"));
if (luom != null)
{
if (luom.equals("") == false)
{
luom = luom.toUpperCase();
u.setInternalUom(luom);
if (u.isValidInternalUom())
{
m.setMaterial(lmaterial);
m.setUom(luom);
if (m.isValidMaterialUom() == false)
{