Dex2 Interim Data

Am trying to access interim data using Dex2 but it keeps returning annual data.

I've copied the request parameters from the excel fundamentals template but that doesn't seem to work.

Here is what I'm trying to use:

.RequestParam = "reportingstate:rsdt scale=6 Sdate=FI-10 Edate=FI0 Frq=FI"

The data that is return brings through the right number of interim periods, but the data in the fields is the annual data, and the TR.InterimNumber is 0 for each period.

Best Answer

  • Hi @radek,

    It appears that you've missed Period=FI0 when you copied request parameters from the Excel template. Without this Period takes the default value of FY0, and data from annual report is returned. Try
    .RequestParam = "Period=FI0 reportingstate:rsdt scale=6 Sdate=FI-10 Edate=FI0 Frq=FI"

Answers