How to Change the date format to DD-MM-YYYY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-04-2022 05:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-04-2022 05:24 AM
Hi Shweta,
OOTB system have one date format and you can't change that format to each field. Check the below it will help you
https://community.servicenow.com/community?id=community_question&sys_id=b197496fdb5a5854d5c4d9d968961988
Thanks
Chandu Telu
Please Mark ā
Correct/helpful, if applicable,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-04-2022 05:26 AM
Hello ,
You can change to required format.
Please see the below article about this.
https://docs.servicenow.com/bundle/sandiego-it-operations-management/page/product/discovery/concept/cert-inventory-mgmt.html
Regards,
Alok Gupta

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-04-2022 05:27 AM
Hello ,
If you want to get the date in this format (dd/mm/yyyy) to show on SP, then return the date from the backend like this
var gdt = new GlideDateTime("2019-11-14 12:33:50");
var myDate = gtd.getDate();
var gd = new GlideDate();
gd.setValue(myDate);
gs.info(gd.getByFormat("dd-MM-yyyy"));
Mark the comment as a correct answer and helpful once worked.
Regards.
Vaishnavi Lathkar