I did find a solution ⌠got a new computer 8) !!! Kidding of course. I have no idea exactly what was causing the issue. All I know is that it works flawlessly now with Vista / Excel 2007. If you log a tech support case (or whatever they are called now), they can provide you with a âloggingâ utility that may help them debug your issue.
My visual basic references are ticked for âBusiness Objects Designer 11.5 Object Libraryâ. I am using Excel 2003 with BO XIR2 SP4. I donât know what I am doing wrong, If you can help that would be great.
Great tool! It has saved me 1-2 days of work. I made the changes in object names and their descriptions in 30 minutes (including download of the utility, and reading how to use it).
One suggestion though:
It would be prefect if the utility was capable of renaming class names and class descriptions too
I am working on following version of universe designer & trying to update the description of objects but giving me error as âRuntime error 13 :Type Mismatchâ
univ version-12.1.0.882 [BO XI 3]
Pls give any valuable suggestions,to get rid of this error.
Dim RowNum As Long
Dim Cls As Designer.Class
Dim Obj As Designer.Object
Dim Rng As Excel.Range
Set DesignerApp = New Designer.Application
DesignerApp.Visible = True
Call DesignerApp.LogonDialog
Set Univ = DesignerApp.Universes.Open
Set Wksht = ThisWorkbook.Worksheets("Objects")
Set Rng = Wksht.Range("Objects")
For RowNum = 1 To Rng.Rows.Count
Set Cls = Univ.Classes.FindClass(Rng.Cells(RowNum, 1).Value)
Set Obj = Cls.Objects(Rng.Cells(RowNum, 2).Value)
If Obj.Name <> Rng.Cells(RowNum, 4) Then Obj.Name = Rng.Cells(RowNum, 4)
[b]Obj.Description = Rng.Cells(RowNum, 5)[/b]
Next RowNum
With the help of this macro, I can extract the details without any error but even when i tried to update the definition of single object using this macro , Its giving me error âRuntime error 13 :Type Mismatchâ
Try stepping through the code to find the specific line that is throwing the error. Then add some âwatchâ values to see where the mismatch is occuring.
Hi, I am keep on trying with the excel sheet for this utility. But I am getting âRun-time error 430. Class does not support automation or does not support expected interface.â
I am using Excel 2003 and I have reference to Tools > Reference > Business Objects Designer 11.5 Object Library and BOXI R2
Please let me know whether i need to make any changes in VB code. (i dont have much knowledge on VB sciprt).
I searched in the forum but didnât find anysolution for this issue.
This looks greatâŚIâm trying to do a similar thing in Crystal to automate the generation of Formula Fields names and formulas. Anyone done anything like that before?
Hi Dwayne. I need to update a lot of objects to use the TABLE option so that I can force a join to some tables. It will take me some time to visit each object and then choose TABLE and select the few tables that I want. Is there a way I can amend your utility to do this? I had a quick browse in the object model but I couldnât see anything obvious (that worked anyway!). Thanks in advance.