0

what is the infostore method to retreive the Last Refresh Time of a report in Business objects XI R3

Jacek Sierajewski
  • 613
  • 1
  • 11
  • 33

1 Answers1

0

Once you have a com.businessobjects.rebean.wi.DocumentInstance you can get the last run time by asking the properties.

Properties docProps = documentInstance.getProperties();
docProps.getProperty(PropertiesType.LAST_REFRESH_DURATION, "0");

All of the details can be found in the <WEB APP Install>\AnalyticalReporting\viewers\cdz_adv\viewDocument.jsp

shrub34
  • 796
  • 6
  • 17