Hi Patrick,
If I'm not wrong, and that's how I implemented it, to get values from OpenUI into Agentry you have to use external value.
Create the external value in your External Field section for the Agentry field.
Then in Open UI override the method getExtensionString:
public String getExtensionString(String name)
{
String value = "";
if (name.equals("ExternalVal"))
{
value = "valueForYourCase";
}
return value;
}
The getExtensionString method is called for instance if you have an update rule linked to the AgentryField->External Value