EMA API v3.5.0.L1 - VIEW not working

Even if we pass the view to the consumer, it returns all the fields. Our code is:


ElementList view = EmaFactory.createElementList();

OmmArray array = EmaFactory.createOmmArray();

array.fixedWidth(2);

array.add(EmaFactory.createOmmArrayEntry().intValue(22)); // BID

array.add(EmaFactory.createOmmArrayEntry().intValue(25)); // ASK

array.add(EmaFactory.createOmmArrayEntry().intValue(68)); // MATUR_DATE

view.add(EmaFactory.createElementEntry().uintValue(EmaRdm.ENAME_VIEW_TYPE, 1));

view.add(EmaFactory.createElementEntry().array(EmaRdm.ENAME_VIEW_DATA, array));

String instrumentCode = "EUR1M="

consumer.registerClient(reqMsg.serviceName("--").name(instrumentCode).payload(view).interestAfterRefresh(false), appClient);

Best Answer

  • umer.nalla
    Answer ✓

    Hi @anshul.gupta2

    If you have tested using the example360__MarketPrice__View and it does not work, then the most likely explanation is that the server you are connecting does not have the licence for "Snapshot and Dynamic View Capability".

    You can confirm this by interestAfterRefresh(true) and see if it works.

    If the above works and false value does not work, then please speak to your Market Data team - to see if they have a different server with the Snapshot and Dynamic View Capability licence.

    If they are not sure, please post back here and I can try and get your Refinitiv account team to reach out to them.

Answers

  • Checked with interestAfterRefresh(true) and it still returns all the fields.

  • Hi @anshul.gupta2

    Please check with your local Market Data teams - sometimes they do disable views - because of the extra processing burden it places on the ADS server (as a result of it having to filter fields for consumers).


  • If the Market Data team advises that Views are enabled, then please enable low level trace and provide the output as an attachment to this thread

    How to enable Trace


  • Hello @anshul.gupta2

    I have tested the given code and it works fine in my environment, the application receive the requested fields from my local TREP.

    Based on the low level trace message, the Provider will returns its connection properties with the Login request message, my local TREP returns the following attributes which mean the server is Views enabled.

    <elementEntry name="SupportViewRequests" dataType="UINT" data="1"/>

    What is the Provider application that your consumer application connecting to?

    Please enable the low level trace and give us the whole trace messages when the problem occurs.

  • Thanks, the market data team have confirmed Snapshot and View Capability is not enabled which is why its not working.