i have a data model attribute period that show the period of time for some activity i like to use just year like 2023, 2024 so on, curently i use text as data attribute can i use date/time?
Like
1 comments
12:00 Jan 27, 2025
Create a separate attribute of Date datatype, parse the date/time you receive and retrieve date from it (either using event listener, business process on the object or a business process and the DateTime.Parse and Date property of the parsed datetime) and paste the read date into this new attribute. this should do what's needed.
Show all comments