First, let me apologize for my bad English.
I am writing a Java servlet, HistoricalDataRequest (BDH Excel add-in function) and ReferenceDataRequest (Excel BDP add-in function) work fine.
And now I'm trying to request the DVD_HIST function (BDS Excel add-in function), but when I set the override for DVD_START_DT and DVD_END_DT, I get this exception:
com.bloomberglp.blpapi.NotFoundException: Element: DVD_START_DT not found in: ReferenceDataRequest
I am using this command:
request.set("DVD_START_DT", "20151101");
request.set("DVD_END_DT", "20151231");
Has anyone found this problem before? Some ideas?
source
share