Hello @VR_10417596
Does the API exists? use it. Not supported means nothing.
Also you can try alternate one or write own method to crete it.
WCTypeIdentifier typeID = CreateAndEditWizBean.newWCTypeIdentifier("WTYPE|WTDocument|my.softType");
this one is from the mentioned class CreateAndEditWizBean
public static final WCTypeIdentifier newWCTypeIdentifier(String typeInput) {
WCTypeIdentifier var1 = null;
if (typeInput != null && !"".equals(typeInput)) {
try {
var1 = (WCTypeIdentifier)IDENTIFIER_FACTORY.newWCTypeIdentifier(typeInput);
Class.forName(var1.getClassnameFromTypename());
} catch (Exception var3) {
if (log.isDebugEnabled()) {
log.debug(" in getTypeIdentifier() trying to create WCTypeIdentifier from type: " + typeInput);
}
var1 = null;
}
}
return var1;
}
PS> here is example how to create SearchCondition
ModeledTypeModel atmodel = new ModeledTypeModel();
WCTypeIdentifier typeID = CreateAndEditWizBean.newWCTypeIdentifier("WTYPE|WTDocument|my.softType");
try
{
SearchCondition sc = atmodel.getSearchCondition(typeID,true);
} catch (WTException e)
{
throw new RuntimeException(e);
}
PetrH