cancel
Showing results for 
Search instead for 
Did you mean: 

OWD always shows an ID for the folder name

popeye
Champ in-the-making
Champ in-the-making
We have your 3.2.0.0 version of OpenWorkdesk and face the following issue in our IBM Content Manager installation:
whenever we create a new folder, OpenWorkdesk shows an ID next to the folder icon => but we want to have the ItemType name as the default one…is this somehow possible?

Thanks in advance 🙂
1 REPLY 1

vahe
Champ in-the-making
Champ in-the-making
The IBM CM item uses as display name the attribute of the Item Types definition, that has the "Represents Item" flag checked (see IBM CM System Administration Client).
If this flag is missed:
- till OWD version 3.2.0.0: the ItemId is displayed
m_name = ((DKPidICM) m_ddo.getPidObject()).getItemId() + ("*");
- since OWD version 3.2.0.1 / 4.0.0.0 - we are using the the localized description / display name of Item Type
m_name = this.getObjectClass().getDescription(m_network.getLocale());

public String getDescription(Locale locale_p){
    …
    descr = m_itemTypeDef.getDescription(loc);
    …
}