Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
135 14 10 10

Something went wrong while UDF processing the request. The format of value 'threatpulse' is invalid.

While trying to run a python request that has run before I get the following error:

Something went wrong while UDF processing the request. The format of value 'threatpulse' is invalid.
df,err = ek.get_data(
    "MYSUK140361=",[
                         "TR.FIIssuerName",
                         "TR.FiIssuerShortName",
                         "TR.FiDebtTypeShortDescription",
                         "TR.FiParentImmedLongName",
                         "TR.FiParentLongName",
                         "TR.FiIndustrySectorDescription",
                         "TR.FiIndustrySubSectorDescription",
                         "TR.FiOrgID",
                         "TR.FiAssetType",
                         "TR.FiParentIndustrySector",
                         "TR.FiIndustrySubSectorDescription",
                         "TR.FiParentIssuerName",
                         "TR.FiParentImmedTicker",
                         "TR.FiParentImmedIssuerOrganization",
                         "TR.FiParentIssuerName",
                         "TR.FiParentSPIndustryDescription",
                         "TR.IssuerTickerCode"
                     ]
) 
eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apierror-message
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvote
Accepted
24.4k 53 17 14

Hello @alex.yermolayev

I have tried your Eikon Data API function call but I cannot replicate the issue in my environment. My application does not encounter the problem. Does the problem still persist in your environment?

Code:

import eikon as ek
ek.set_app_key('3....')
df, err = ek.get_data(
    "MYSUK140361=", [
        "TR.FIIssuerName",
        "TR.FiIssuerShortName",
        "TR.FiDebtTypeShortDescription",
        "TR.FiParentImmedLongName",
        "TR.FiParentLongName",
        "TR.FiIndustrySectorDescription",
        "TR.FiIndustrySubSectorDescription",
        "TR.FiOrgID",
        "TR.FiAssetType",
        "TR.FiParentIndustrySector",
        "TR.FiIndustrySubSectorDescription",
        "TR.FiParentIssuerName",
        "TR.FiParentImmedTicker",
        "TR.FiParentImmedIssuerOrganization",
        "TR.FiParentIssuerName",
        "TR.FiParentSPIndustryDescription",
        "TR.IssuerTickerCode"
    ]
)
print(df)


Result:

Instrument                       Issuer Name Issuer Short Name  ... Ultimate Parent Company Parent SP Industry Description Issuer Ticker
0  MYSUK140361=  BANDAR SERAI DEVELOPMENT SDN BHD      Bandar Serai  ...                  Gamuda                       Building         GAMUB

[1 rows x 18 columns]
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
4.3k 2 4 5

I don't reproduce the issue and retrieve a valid result.

Could you confirm you reproduce the issue systematically ?

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Yes, I reproduce the issue systematically today. @

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.