How can I print the enumeration display value depending on the attribute in the e-mail notification?
Attribute Internal Name Name: ProjeAdi
Enumaration Internal Name: ProjeAdi
Enumaration Value:
Internal Name: AProject, Display Name: A Projesi
Internal Name: BProject, Display Name: B Projesi
wt.change2.VersionableChangeItem chg = (wt.change2.VersionableChangeItem)primaryBusinessObject;
com.ptc.core.lwc.server.PersistableAdapter obj = new
com.ptc.core.lwc.server.PersistableAdapter(chg,null,java.util.Locale.US,new com.ptc.core.meta.common.DisplayOperationIdentifier());
obj.load("number","name","theCategory","ProjeAdi");
IRNoVar = (String) obj.get ("number");
System.out.println("IRNoVar = "+IRNoVar);
IRAdiVar = (String) obj.get ("name");
System.out.println("IRAdiVar = "+IRAdiVar);
IRKategoriVar = (String) obj.get ("theCategory");
System.out.println("IRKategoriVar = "+IRKategoriVar);
IRProjeAdiVar = (String) obj.get ("ProjeAdi");
System.out.println("IRProjeAdiVar = "+IRProjeAdiVar);
In notification mail IRProjeAdiVar display name is Project Name
This code was written in windchill workflow expression robot.
The output value here is;
Project Name: AProject
But what we want here is,
Project Name : A Projesi.
How should I edit this code to get the output I want?

