Hello,
nestedFieldList.add(EmaFactory.createFieldEntry().real(25, 99l, OmmReal.MagnitudeType.EXPONENT_NEG_1));
I have the above code when populating my fieldlist to post some data to Refinitiv, i am able to correctly post and see my updates when this data is posted.
However In the case that I would like to post a String value to the field instead, using the code sample below,
nestedFieldList.add(EmaFactory.createFieldEntry().utf8(25, "Foo"));
I get a Nack saying this is invalid content, does the EMA api support posting String to fields ? If so what is the correct way of achieving this.