Pega Convert Date MM/dd/yyyy to dd/MM/yyyy
Below Function is used in Pega for converting string date 12/31/2025 to 31/12/2025
FormatDateTime(toDateTime("12/31/2025"),"dd/MM/yyyy","Europe/Amsterdam","en_BE")
Result = 31/12/2025
Below Function is used in Pega for converting string date 12/31/2025 to 31/12/2025
FormatDateTime(toDateTime("12/31/2025"),"dd/MM/yyyy","Europe/Amsterdam","en_BE")
Result = 31/12/2025
Comments
Post a Comment