Hi 
I faced an issue with how to send commands from Workbench to SpaceClaim.
I want to send a command from the Workbench ACT console to the Space Claim console to build geometry. I am using the next code but nothing is happening in the Space Claim.
staticSys = GetTemplate(TemplateName = "Static Structural", Solver = "ANSYS").CreateSystem()
staticSys.DisplayText = "Model"
geomCont = staticSys.GetContainer(ComponentName = "Geometry")
geomCont.Edit(IsSpaceClaimGeometry = True, Interactive = True)
cmd = """
import clr
clr.AddReference("SpaceClaim.Api.V20")
from SpaceClaim.Api.V20 import *
sectionPlane = Plane.PlaneZX
result = ViewHelper.SetSketchPlane(sectionPlane, Info4)
point = Point2D.Create(MM(0), MM(0))
result = SketchPoint.Create(point)
baseSel = SelectionPoint.Create(CurvePoint2)
targetSel = SelectionPoint.Create(DatumPoint2)
result = Constraint.CreateCoincident(baseSel, targetSel)
mode = InteractionMode.Solid
result = ViewHelper.SetViewMode(mode, Info5)
"""
geomCont.SendCommand(Language = "Python", Command = cmd)
BR Ihor