This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<unload unload_date="2015-08-14 17:18:17"> | |
<sys_remote_update_set action="INSERT_OR_UPDATE"> | |
<application display_value="Global">global</application> | |
<application_name>Global</application_name> | |
<application_scope>global</application_scope> | |
<application_version/> | |
<collisions/> | |
<commit_date/> | |
<deleted/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Converts between JSON Objects and GlideRecords | |
* @namespace | |
* @type {Class} | |
*/ | |
var JSONtoGlide = Class.create(); | |
JSONtoGlide.prototype = { | |
/** | |
* @description Converts an object into a new GlideRecord | |
* @param {Object} json A json object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<unload unload_date="2015-08-14 22:59:24"> | |
<sys_remote_update_set action="INSERT_OR_UPDATE"> | |
<application display_value="Global">global</application> | |
<application_name>Global</application_name> | |
<application_scope>global</application_scope> | |
<application_version/> | |
<collisions/> | |
<commit_date/> | |
<deleted/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Updates SLAs based on conditions and stages | |
* @namespace | |
* @type {Class} | |
*/ | |
var SLARunner = Class.create(); | |
SLARunner.prototype = { | |
/** | |
* @description The name of the SLA table | |
* @type {String} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<unload unload_date="2015-08-14 18:47:45"> | |
<sys_remote_update_set action="INSERT_OR_UPDATE"> | |
<application display_value="Global">global</application> | |
<application_name>Global</application_name> | |
<application_scope>global</application_scope> | |
<application_version/> | |
<collisions/> | |
<commit_date/> | |
<deleted/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Creates Requested Items that can be approved and worked for testing purposes | |
* @namespace | |
* @type {Class} | |
*/ | |
var RequestTester = Class.create(); | |
RequestTester.prototype = { | |
/** | |
* @description Creates a Requested Item given a name of a catalog item and variables to enter | |
* @param {String} name The name of a catalog item |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Allows unit testing of Events | |
* @namespace | |
* @example | |
* //Create an incident, update the state, then ensure the incident.state.changed event was fired | |
* var incident = new GlideRecord('incident'); | |
* if (incident.get(sys_id)) { | |
* incident.state = 2; | |
* incident.update(); | |
* } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Searches for email notifications based on certain criteria | |
* @namespace | |
* @type {Class} | |
*/ | |
var NotificationsTester = Class.create(); | |
NotificationsTester.prototype = { | |
/** | |
* @description The name of the email table | |
* @type {String} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Determines what event to use when the approval state changes on a task record | |
* @namespace | |
* @type {Class} | |
*/ | |
var ApprovalEventsHandler = Class.create(); | |
ApprovalEventsHandler.prototype = { | |
/** | |
* @description Cancelled state value | |
* @type {String} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Reverses an encoded query to provide the oppposite of what it would normally provide | |
* @namespace | |
* @type {Class} | |
*/ | |
var EncodedQueryReversal = Class.create(); | |
EncodedQueryReversal.prototype = { | |
/** | |
* @description Contains objects of conditions and what to replace them with | |
* @type {Array} |
OlderNewer