Does anyone know why sometimes the node would have 2 additional fields - jcr:lastModified and jcr:lastModifiedBy
while some nodes don't have these 2 fields?

lastModified and lastModifiedBy fields in AEM nodes
627 Views Asked by superninja At
1
There are 1 best solutions below
Related Questions in PROPERTIES
- The Selenium application properties folder holds two environment options. After running a test the environment setting changes to a previous setting
- Inconsistency in lazy variable initialization between static and instance properties in Swift
- How to convert from Java ASCII properties to UTF8 (Java 9) properties
- Conditional Property After Powershell Left Join
- Inheritance - is it possible to 'force' variable values relative to the derived class?
- How to use an imported Excel file inside Anylogic model
- TinyMCE custom toolbar button to set CSS property of selected text
- Missing Properties
- I am trying a display items (events) from db typescript nestjs using handlebars the events are an array of object. Properties of each object undefined
- How to transform a flat form-specific data-structure into a nested one?
- C# How do I Create and Reference Multiple Globally Accessible Objects?
- powershell array of object with dynamic properties outputs only properties from first element
- Swift protocol extensions and immutable properties
- Object property has different many string values
- I created a dice cube model using a tutorial and i would like to expoert the subdivision holes as properties to unity3d. how can i do it?
Related Questions in AEM
- Issues with the JRE when attempting to open an AEM instance by using JDK 11.0.19 on Ubuntu
- In Webpack, how do I expose vendor JS?
- How to use ExecutorService in Kubernetes PODs
- AEM custom Workflow step: how to get ResourceResolver for initiator?
- Dynamically add pages in AEM Remote Spa
- How to update the resource property using the valuemap in the Sling servlet?
- how can we retrieve the tag properties in the backend?
- Retrieving Page Properties into Sling Servlet using resource resolver
- Selective Data Export in JSON from Sling Model Exporter in AEM?
- Getting Dependency Issues and How to Create a Logger File for Specific Classes in AEM?
- Getting currentPage from Experience Fragment with Apache Sling Dynamic Include enabled
- AEM is fails for the Video upload alone but works for images able to see Granite JS fails
- Not able to Delete components Adobe AEM 6.5
- Is AEM TarMK syncing bundles?
- AEM 6.5, SPA, Angular 9 - How do I subscribe to a parent container component from a child component?
Related Questions in JCR
- Java JCR is it possible to add '&' into node name
- How to find correct AEM constant class names?
- Node order not preserved sling post servlet
- Streaming data - Heap OOM, JAX-RS
- Magnolia/Jackrabbit JCR - uploading files larger than 1gb
- Moqui Framework - Error: no matching property definition found for {http://www.jcp.org/jcr/1.0}data
- Why does a JCR SQL 2 Query for nt:unstructured also return cq:PageContent nodes?
- ModeShape / JCR InvalidItemStateException blocks DMS
- JCR-SQL2 Select all nodes that have child node with specific property value
- How to query for nodes without children nodes with given name in JCR?
- sling generate html rendition base on virtual jcr or json object
- How to determine source of a third party dependency to resolve warning
- How do I iterate through the nodes of /content and get the value of text property?
- Query All Pages Based on Compoent's Resource Type
- Merge ACS Commons Reports AEM
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In JCR the jcr:lastModified and jcr:lastModifiedBy properties are automatically set by the repository when certain changes are made to a node. These properties are used to track when a node was last modified and who made the modification.
The jcr:lastModified property is a date-time value that is set to the current date and time whenever the node's content or properties are modified, or whenever a child node is added or removed from the node. The jcr:lastModifiedBy property is a string value that is set to the username of the user who made the modification.
Not all nodes will have the jcr:lastModified and jcr:lastModifiedBy properties, as these properties are only set when certain changes are made to the node. For example, if a node is created but its content and properties are not modified, the jcr:lastModified and jcr:lastModifiedBy properties will not be set. It is also possible to disable the automatic setting of these properties by modifying the repository's configuration. If the automatic setting of these properties has been disabled, then no nodes in the repository will have the jcr:lastModified and jcr:lastModifiedBy properties.