Hi everyone,
I am working on a reactive application in OutSystems, specifically a Time Tracking Systems where users need to lock a slot in staring of DST week or ending of DST week.
Details:
Questions:
I would appreciate any guidance, sample code, or references to relevant documentation that could help solve this issue efficiently.
Thank you in advance for your help!
Hi @Jivendra Kumar ,
Kindly refer to this discussion link:
https://www.outsystems.com/forums/discussion/97084/handling-time-zones-and-daylight-saving-time-in-the-server-side-reactive-app/
and this documentation,
https://success.outsystems.com/support/enterprise_customers/maintenance_and_operations/outsystems_cloud_and_time_zones/
and this forge component (Time Zone) as well, hope it helps.,
https://www.outsystems.com/forge/component-overview/500/time-zone-o11
Thanks,
Dhanasingh Dennison.
Hi,
you can refer below discussion. Hope it helps.
https://www.outsystems.com/forums/discussion/67245/time-zone-get-time-zone-and-dst-based-on-country-and-state
https://www.outsystems.com/forums/discussion/80347/make-stored-datetime-consistent-across-timezones-best-practice/
Sriyamini J
Hi Jivendra,
We had a similar requirement to handle Daylight Saving Time (DST) on the server side for validation purposes.
To address this, I developed a .NET extension that accepts the time zone (e.g., Australia/Melbourne) and a date-time value as input parameters. The extension contains logic to accurately calculate the correct DST-adjusted time based on UTC.
This setup allows us to handle both UTC to destination time zone conversions and vice versa.
On the client side, we implemented equivalent logic using JavaScript.
Additionally, in our UI and data model, we’ve separated the Date and Time into distinct fields to simplify handling and improve flexibility.