impromptu.mac 993 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. Dim objApp As Object
  2. Dim objRep as Object
  3. Dim imrFile as String
  4. Dim catalogFile as String
  5. Dim exportFile As String
  6. Dim exportFormat As String
  7. Sub Main ()
  8. rem On Error Resume Next
  9. rem imrFile = "C:\GAPS\Portal\System\IQD\Belege\Belege.imr"
  10. rem catalogFile = "C:\GAPS\Portal\System\Catalogs\Finance.cat"
  11. rem exportFile = "C:\GAPS\Portal\System\Export\Belege.csv"
  12. rem exportFormat = "x_ascii.flt"
  13. imrFile = GetField(Command, 1, ",")
  14. catalogFile = GetField(Command, 2, ",")
  15. exportFile = GetField(Command, 3, ",")
  16. exportFormat = GetField(Command, 4, ",")
  17. Set objApp = CreateObject("CognosImpromptu.Application")
  18. objApp.OpenCatalog catalogFile, "Ersteller"
  19. Set objRep = objApp.OpenReport(imrFile)
  20. objRep.RetrieveAll
  21. If exportFormat = "ims" Then
  22. objRep.ExportHotFile(exportFile)
  23. Else
  24. objRep.Export exportFile, exportFormat
  25. End If
  26. objRep.CloseReport
  27. objApp.Quit
  28. Set objRep = Nothing
  29. Set objApp = Nothing
  30. End Sub