Miscellaneous topics that do not fit into specific categories.
Dynamics 365 automatically timestamps many types of records and activities, but the context only describes built‑in behaviors, not a configurable “insert current date/time” shortcut for arbitrary note text.
Available timestamp-related options from the context:
- Use activities in the Timeline
- When adding activities (notes, tasks, emails, phone calls, appointments) in the Timeline, the system automatically timestamps each activity and shows who created it. This gives a chronological history without manually typing the date/time into the text.
- To use this:
- Open the record (for example, an account or other entity).
- Go to Summary > Timeline.
- Select Add and choose the activity type (for example, a note).
- Enter the note text and save; the activity will carry its own timestamp.
- Rely on system fields / system timestamps (for developers/customizers)
- In Dynamics 365 Business Central, a table can expose a system timestamp field by adding a
BigIntegerfield withSqlTimestamp = true. This is a system-level timestamp used for concurrency and tracking changes, not a user-triggered button, but it can be surfaced on pages for reference. - Example (AL code):
field(3; "Record Time Stamp"; BigInteger) { SqlTimestamp = true; } - A developer can also read this timestamp via
RecordRef/FieldRefand display it, but this still does not create an “insert current time into note text” button; it only exposes the system timestamp of the record.
- In Dynamics 365 Business Central, a table can expose a system timestamp field by adding a
- Time-entry and time-tracking features
- In Project Operations / Project Service Automation and Field Service, time entries and booking timestamps are created and maintained automatically (for example, when booking status changes) or via dedicated time-entry interfaces. These are structured records with their own timestamps and durations, not inline note shortcuts.
Within the provided information, there is no supported mechanism to add a custom button or keyboard shortcut that inserts the current date/time directly into free‑text “timeclock notes.” The closest supported approaches are:
- Using Timeline activities so each note is automatically timestamped.
- Having a customizer/developer expose system timestamp fields on the relevant records for reference.
References: