user Node - no byDefault Method

We're trying to generate a user node / feature type which we can use in a placeholder structure in further models. Geometry is based on a single coordinateSystem.
(Code for example at the bottom)
The node seems to be generated correctly as it turns up in the NodeType panel.
But there is no byDefault placement option so we can't place it on a series of coordinate systems.
I slightly remember there were issues with network workspaces (as we're working).
Any hints how to solve the problem?
(GC 08.11.09.436 - ss6)
Ingo

transaction modelChange 'Add baseCS'
{
node User.Objects.baseCS Bentley.GC.NodeTypes.CoordinateSystem
{
Technique = 'AtModelOrigin';
DGNModelName = 'Default';
SymbolSize = 1;
}
}

transaction modelChange 'Add arc01, coordinateSystem03, point05, point07'
{
node User.Objects.coordinateSystem03 Bentley.GC.NodeTypes.CoordinateSystem
{
Technique = 'ByCartesianCoordinates';
XTranslation = <free> 1.0;
YTranslation = <free> 0.0;
ZTranslation = <free> 0.0;
}
node User.Objects.point07 Bentley.GC.NodeTypes.Point
{
Technique = 'ByCartesianCoordinates';
CoordinateSystem = coordinateSystem03;
XTranslation = ;
YTranslation = -2;
ZTranslation = .25;
}
node User.Objects.point05 Bentley.GC.NodeTypes.Point
{
Technique = 'ByCartesianCoordinates';
CoordinateSystem = coordinateSystem03;
XTranslation = ;
YTranslation = 2;
ZTranslation = .25;
}
node User.Objects.arc01 Bentley.GC.NodeTypes.Arc
{
Technique = 'ByPointsOnCurve';
StartPoint = point05;
PointOnCurve = coordinateSystem03;
EndPoint = point07;
}
}

transaction generateGeometricNodeType 'Generate node type UserNode03'
{
type = User.UserNode03;
addAssemblyToDesignFile = false;
inputProperties = {
property Bentley.GC.NodeTypes.CoordinateSystem coordinateSystem03
{
node = User.Objects.coordinateSystem03;
isReplicatable = true;
isParentNodeScope = true;
}
property double point07_YTranslation
{
originalName = point07_YTranslation;
isOptional = true;
defaultValue = -2;
}
property double point07_ZTranslation
{
originalName = point07_ZTranslation;
isOptional = true;
defaultValue = .25;
}
property double point05_YTranslation
{
originalName = point05_YTranslation;
isOptional = true;
defaultValue = 2;
}
property double point05_ZTranslation
{
originalName = point05_ZTranslation;
isOptional = true;
defaultValue = .25;
}
};
outputProperties = {
property Bentley.GC.NodeTypes.Point point07
{
node = User.Objects.point07;
isConstruction = true;
}
property Bentley.GC.NodeTypes.Point point05
{
node = User.Objects.point05;
isConstruction = true;
}
property Bentley.GC.NodeTypes.Arc arc01
{
node = User.Objects.arc01;
isDynamic = true;
}
};
}