COLNEO Pro 1.2
Loading...
Searching...
No Matches
CopyObjectOptions

Description

Options for copying objects.

{
"proxies_to_relation" : { // defines how a proxy should be copied, either as a new object or as object linked to the copy of its parent object,
"name" : str, // if the copyied object should be element of a relation the relation is defined by a name and a weight
"weight" : number
},
"type_mapping" : { // specify the type of the copied object (value) by the type of the source object (key)
"geo_container" : "act_activity"
},
"property_mapping" : { // map property values from the source object to properties of the copied object, formulas in source property (numbers,date) are supported
"p1##xs:string" : "p2##xs:string",
"p2##xs:string" : "=( ${p2##xs:string} + ${p3##xs:double} )",
"start##xs:date" : "=MINLINKED( ${RELOBJECTS::deliverydate##xs:date} )",
"finish##xs:dateTime" : "=MAXLINKED( ${RELOBJECTS::start##xs:string} )",
},
"property_filter" : { // copy only specific properties defined by this filter
gom::PropertyFilterOptions
},
"properties" : { // properties of copied object, property values could be calculated by a formula as well
"abc##xs:string" : "xyz",
"start##xs:date" : "=MINLINKED( $REL::activity:Start##xs:dateTime )"
}
}
Since
1.1, 05.2026, jh