Learning Code
Learning how to code at AIE for prototyping purposes. Oh my God I’m lovin’ it. One of the things we made today was a flight simulator.
seen from United States
seen from United States
seen from United States
seen from Germany

seen from Malaysia
seen from T1
seen from Germany
seen from Türkiye

seen from Malaysia

seen from United Kingdom
seen from Russia

seen from United States

seen from Türkiye
seen from United States

seen from Türkiye
seen from United Kingdom
seen from Germany

seen from Germany
seen from China

seen from Türkiye
Learning Code
Learning how to code at AIE for prototyping purposes. Oh my God I’m lovin’ it. One of the things we made today was a flight simulator.
Get Current date/time in Client Script ServiceNow
Discover how to retrieve the current date and time in Client Scripts within ServiceNow. Our step-by-step guide empowers you to leverage JavaScript functions to dynamically access real-time data, enhancing your ServiceNow workflows and improving user interactions.
var ajax = new GlideAjax('ClientDateTimeUtils'); ajax.addParam('sysparm_name','getNowDateTime'); ajax.getXMLAnswer(doSomething);
Get complete solution here - https://www.workingcode.in/question/get-current-date-time-in-client-script-servicenow/
Generate CSV file through script ServiceNow
Learn how to effortlessly generate CSV files from ServiceNow using scripting. Our comprehensive guide empowers you to automate data exports, streamline reporting, and enhance data management with ease, optimizing your ServiceNow experience
var Headers = ["Number","Requested for","Description","Assignment Group", "Assigned To"]; var fileName = 'IncidentRecord.csv'; var csvData = "; for (var i = 0; i < Headers.length; i++) { //Build the Headers csvData = csvData + '"' + Headers[i] + '"' + ','; }
Get a complete solution - https://www.workingcode.in/question/how-to-generate-csv-file-through-script-servicenow/
Get Count Using GlideAggregate ServiceNow | Working Code
Optimize data queries with GlideAggregate in ServiceNow. Learn how to efficiently count records and perform aggregations on your ServiceNow platform using GlideAggregate.
GlideForm API ServiceNow | g_form.addOption
Dynamically Display Choices In My Select Box Field. g_form.addOption Get more on ServiceNow at Working Code developer forum.
Discover a vibrant Servicenow developer forum community at Working Code. Connect, learn, and share insights with fellow developers. Join now