the oReport object does not contain a docmd object.
You would have to use the application's docmd to save the currently opened report.

VB Code:
  1. oApp.DoCmd.Save acReport, "Report1a"
This would save the current version of the report to the db, not the filesystem.