list-datasources-C11.mac 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. Dim objApp As Object
  2. Dim objModel As Object
  3. Dim objDataSource As Object
  4. Dim objQuery As Object
  5. Dim objCube As Object
  6. Dim filename as String
  7. Dim folder as String
  8. Dim logfile As String
  9. Sub Main ()
  10. On Error Resume Next
  11. folder = "C:\GlobalCube\System\AUDEV_CARIT\Models"
  12. filename = "s_offene_auftraege.pyj"
  13. logfile = "C:\GlobalCube\Tasks\config\models\s_offene_auftraege.pyj.log"
  14. folder = GetField(Command, 1, ",")
  15. filename = GetField(Command, 2, ",")
  16. logfile = GetField(Command, 3, ",")
  17. Set objApp = CreateObject("IBMCognosTransformer.ApplicationCtrl.1")
  18. Set objModel = objApp.OpenModel(folder + "\" + filename)
  19. Open logfile for Output as #1
  20. Set objCube = objModel.Cubes.Item(1)
  21. Write #1, objCube.MDCFile
  22. Write #1, "--"
  23. For i = 1 to objModel.DataSources.Count
  24. Set objDataSource = objModel.DataSources.Item(i)
  25. If objDataSource.Type = 38 Then
  26. rem Package
  27. Write #1, "[", objDataSource.Name, "]"
  28. For j = 1 to objDataSource.Queries.Count
  29. Set objQuery = objDataSource.Queries.Item(j)
  30. Write #1, objQuery.Name
  31. Next
  32. Exit For
  33. End If
  34. If objDataSource.Type = 6 Then
  35. Write #1, objDataSource.LocalPath
  36. Else
  37. Write #1, objDataSource.Name
  38. End If
  39. Next
  40. Close #1
  41. objModel.Close
  42. Set objQuery = Nothing
  43. Set objDataSource = Nothing
  44. Set objModel = Nothing
  45. Set objApp = Nothing
  46. End Sub