mooExists("[object name]")


Enables the developer to identify if a given object exists within an Analytic Workspace in the current Oracle OLAP session


Syntax


               mooExists("[object name]")


Return Value


               STRING


Example


Public Sub mooExists()


If Not oregistered Then:   boo = regQ:

boo = o.mooExists("ALLCOMPILE")


If boo = True Then

  MsgBox "Yes, ALLCOMPILE Exists"

Else

  MsgBox "No, ALLCOMPILE Does Not Exist"

  Debug.Print o.getlastmooerr

End If


End Sub