Hello, I am writing a script in order to automatize the manipulation of the workspace. In this context I want, to start with, to import a vector map and an observed wind climate.  My code is the following:  mappath="C:\Users\hdse\Documents\sea.map" owcpath="C:\Users\hdse\Documents\Portugal.owc"  Set Project = ReportingAssistant.SelectedHierarchyMember Set Cluster = Project.Insertions.New.ByClassID(ehmcTurbineSiteGroup).Execute Set hmOwc = Project.Insertions.FromFile.ByClassID(ehmcObservedWindClimate).Execute(owcpath, Nothing) Set MapSea = Project.Insertions.FromFile.ByClassID(ehmcVectorMap).Execute(mappath,Nothing)  The turbine site group is created successfully, but I have this error:  Script control reported the error:  	Object required: 'Project.Insertions.FromFile.ByClassID(...)'  The last execution line attempt was for an unknown line number. Script: 'essai1', version: 11.01.0001  The problem is coming from the file insertion, but I could`nt find the mistake. I hope you will be able to help me Thank you !