You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/refguide/modeling/domain-model/entities/_index.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,7 @@ Data grids do not directly display this date.
130
130
131
131
#### Store 'changedDate'
132
132
133
-
This property defines whether the entity contains the system attribute 'changedDate'. This is an attribute of type **Date and time** that stores the most recent date and time when the object was changed.
133
+
This property defines whether the entity contains the system attribute 'changedDate'. This is an attribute of type **Date and time** that stores the date and time when the changed object was committed.
134
134
135
135
| Option | Description |
136
136
| --- | --- |
@@ -145,10 +145,6 @@ Data grids do not directly display this date.
145
145
The 'changedDate' attribute is updated when the changed object is committed.
146
146
{{% /alert %}}
147
147
148
-
{{% alert color="warning" %}}
149
-
The `changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change(IContext context, IMendixObject object, java.util.Map<java.lang.String,java.lang.String> changes)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
150
-
{{% /alert %}}
151
-
152
148
#### Store 'owner' {#store-owner}
153
149
154
150
This property defines whether the entity has the system association 'owner'. This is an association to the system entity 'User' that (initially) stores a reference to the user that created the object. This association is automatically set by the server upon creating an object.
Copy file name to clipboardExpand all lines: content/en/docs/refguide10/modeling/domain-model/entities/_index.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,7 @@ Data grids do not directly display this date.
130
130
131
131
#### Store 'changedDate'
132
132
133
-
This property defines whether the entity contains the system attribute 'changedDate'. This is an attribute of type **Date and time** that stores the most recent date and time when the object was changed.
133
+
This property defines whether the entity contains the system attribute 'changedDate'. This is an attribute of type **Date and time** that stores the most recent date and time when the object was changed (Mendix .x and below), or when the changed object is committed (Mendix 10.20 and above).
134
134
135
135
| Option | Description |
136
136
| --- | --- |
@@ -148,7 +148,7 @@ In Mendix 10.19.x and below, the 'changedDate' attribute is updated whenever a v
148
148
{{% /alert %}}
149
149
150
150
{{% alert color="warning" %}}
151
-
The`changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change(IContext context, IMendixObject object, java.util.Map<java.lang.String,java.lang.String> changes)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
151
+
In Mendix 10.19.x and below, the`changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change(IContext context, IMendixObject object, java.util.Map<java.lang.String,java.lang.String> changes)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
152
152
{{% /alert %}}
153
153
154
154
#### Store 'owner' {#store-owner}
@@ -183,6 +183,10 @@ In Mendix 10.20 and above, the 'changedBy' property is updated when a changed ob
183
183
In Mendix 10.19.x and below, the 'changedBy' property is updated whenever a value is set for a member (attribute or association).
184
184
{{% /alert %}}
185
185
186
+
{{% alert color="warning" %}}
187
+
In Mendix 10.19.x and below the `changedBy` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change(IContext context, IMendixObject object, java.util.Map<java.lang.String,java.lang.String> changes)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
Copy file name to clipboardExpand all lines: content/en/docs/refguide8/modeling/domain-model/entities/_index.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,6 +141,10 @@ The 'changedDate' property is only updated on real changes. Simply changing and
141
141
We do not support displaying this system member of the System.User entity or its specializations in a data grid directly.
142
142
{{% /alert %}}
143
143
144
+
{{% alert color="warning" %}}
145
+
The `changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change(IContext context, IMendixObject object, java.util.Map<java.lang.String,java.lang.String> changes)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
146
+
{{% /alert %}}
147
+
144
148
#### Store 'owner'
145
149
146
150
This property defines whether the entity has the system association 'owner'. This is an association to the system entity 'User' that (initially) stores a reference to the user that created the object. This association is automatically set by the server upon creating an object.
Copy file name to clipboardExpand all lines: content/en/docs/refguide9/modeling/domain-model/entities/_index.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,6 +155,10 @@ The 'changedDate' property is updated when a value is set. [In Mendix 9.5.0 and
155
155
We do not support displaying this system member of the System.User entity or its specializations in a data grid directly.
156
156
{{% /alert %}}
157
157
158
+
{{% alert color="warning" %}}
159
+
The `changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change(IContext context, IMendixObject object, java.util.Map<java.lang.String,java.lang.String> changes)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
160
+
{{% /alert %}}
161
+
158
162
#### Store 'owner' {#store-owner}
159
163
160
164
This property defines whether the entity has the system association 'owner'. This is an association to the system entity 'User' that (initially) stores a reference to the user that created the object. This association is automatically set by the server upon creating an object.
0 commit comments