Is something happening with RIC 'PMNT.K'?

I am looking for very simple annual TR.CompanyMarketCapitalization data but I am encountering issues with PMNT.K, my Refinitiv desktop app freezes and the Refinitiv data python api throws an error code 416. Yet, the company seems to be regularly traded, and I cannot reproduce the same problem with any other RIC I am looking at. Is this a permission issue or am I missing something?

Best Answer

  • raksina.samasiri
    Answer ✓

    Hi @mburato ,

    Using Data Item Browser, only TR.F.MktCap field data is available on this RIC

    1722412810613.png

    Hence I tried to retrieve annual market cap data with these fields. For TR.F.MktCap, it's only latest value, and the other fields (TR.CompanyMarketCapitalization, TR.CompanyMarketCap), return <NA>.

    1722412850334.png

    And here is the error returned when retrieving the last two fields

    Error code -1 | Unable to resolve all requested identifiers in ['PMNT.K']

    To clarify the content and suggest proper field to be used for annual market cap, ticket number 13784091 was raised on your behalf and the helpdesk is going to contact you to assist on this.

Answers

  • Hi @mburato ,

    I've tried with only TR.Revenue field and can get the data properly. It could be from specific field that cause an error, could you please provide the code you have been used for further investigation?

    rd.get_data(
    universe=['PMNT.K'],
    fields=['TR.Revenue.date', 'TR.Revenue'],
    parameters = {'SDate': '-5', 'EDate': '0', 'Period': 'FY1', 'Frq': 'FY'}
    )

    1721795634135.png

  • Hi @raksina.samasiri , thanks for the prompt answer. I did check and revenue works for me too. However, as soon as I change it to TR.CompanyMarketCapitalization and TR.CompanyMarketCapitalization.date it still hangs and then 416 error. Could you please check if that is your case as well?

  • @raksina.samasiri edited question to reflect the fact that the problem seems centered around market cap

  • Apparently there was a database update and now the ric seems updated/no longer avalilable

  • Amazing, I'll take this through helpdesk then. Thanks for the help!

  • Hi @mburato , May I ask who told you this? I'm asking because I'm able to collect information for this RIC, indicating that it hasn't been deleted; the information is the same that can be seen in the screenshot in the answer to this question on Jul 24th 2024, indicating that it hasn't been altered either:


    rd.get_data(
    universe=['PMNT.K'],
    fields=['TR.Revenue.date', 'TR.Revenue'],
    parameters = {'SDate': '-5', 'EDate': '0', 'Period': 'FY1', 'Frq': 'FY'}
    )


    1723636631141.png

  • Hi
    @jonathan.legrand, sorry there was a bit of back and forth with support. Now both market cap and revenues are correctly shown for the ric in question and a couple of others I flagged. Hopefully the error does not persist on your end. I tried and for me it works, I'll update the answer.
  • After talking to support, now all items seems to be showing for PMNT.K. Thanks everyone for the help.