Skip to content

Instantly share code, notes, and snippets.

View ivikaskondeti1's full-sized avatar

Vikas kondeti ivikaskondeti1

  • capgemini
View GitHub Profile

GlideRecord & GlideAggregate Cheat Sheet ❗

GlideRecord(String tableName) ❗

var gr = new GlideRecord('incident'); // use the incident table
gr.query(); // fetch data from the database
while (gr.next()) { // advance
    gs.info(gr.short_description);
}