Hello team
I am using EMA OMMConsumer off-Stream code to publish data.
I want to publish the date in the format of "DD MM YYYY" can anyone please help me out in the same.
As we use below for Double fields same way needed for date fields.
nestedFieldList.add(EmaFactory.createFieldEntry().realFromDouble(Fid, getBid(), OmmReal.MagnitudeType.EXPONENT_POS_1));
I tried below thing with activ = 2025-03-27
nestedFieldList.add(EmaFactory.createFieldEntry().ascii(17, activ));
Getting below error
Fid: 17 Name = ACTIV_DATE DataType: Error Value: 5 (IncompleteData)
Anyone please help me out in this…