This file contains hidden or 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
/******/ (function(modules) { // webpackBootstrap | |
/******/ // The module cache | |
/******/ var installedModules = {}; | |
/******/ | |
/******/ // The require function | |
/******/ function __webpack_require__(moduleId) { | |
/******/ | |
/******/ // Check if module is in cache | |
/******/ if(installedModules[moduleId]) { | |
/******/ return installedModules[moduleId].exports; |
This file contains hidden or 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
/*Business Rule: Automagically Link*/ | |
/*Table: sys_journal_field*/ | |
/*When: After*/ | |
/*Order: 100*/ | |
/*Insert: true*/ | |
/*Update: true*/ | |
/*jslint sloppy: true, vars: true*/ | |
/*global GlideRecord, current, paddAndLinkRefs*/ | |
function onAfter(current, previous) { | |
//This function will be automatically called when this rule is processed. |
This file contains hidden or 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
//Name: push comments to ritm | |
//Table: Catalog Task | |
//When: Before | |
//Insert: false | |
//Update: true | |
(function executeRule(current, previous /*null when async*/) { | |
try{ | |
var sc_req_item = new GlideRecord('sc_req_item'); | |
if(sc_req_item.get(current.request_item)){ | |
sc_req_item.comments = current.comments; |
This file contains hidden or 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
//script include global.choiceUtil | |
//client callable true | |
var choiceUtil = Class.create(); | |
choiceUtil.prototype = Object.extendsObject(AbstractAjaxProcessor, { | |
getHint: function() { | |
try { | |
var returnObj = {}; | |
var hint = new GlideRecord('sys_choice'); | |
hint.addQuery('name', this.getParameter('sysparm_table')); | |
hint.addQuery('field', this.getParameter('sysparm_field')); |
This file contains hidden or 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" ?> | |
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null"> | |
<script> | |
window.location.href = '/cms' | |
</script> | |
</j:jelly> |
This file contains hidden or 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
//Validate Date is after today | |
//GwtDate not available on service portal | |
function onSubmit() { | |
//Type appropriate comment here, and begin script below | |
//validate that the start date is before the today's date | |
var field = 'start_date'; | |
var st = g_form.getValue(field); | |
var newTime = new GwtDate(st); | |
var tm = new GwtDate(); | |
tm.now(); |
This file contains hidden or 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
on run | |
# TODAY - Returns today's date! | |
# Create your own Service, to avoid 3rd Party software (WordService, etc.) | |
# In Automator: | |
# > Service receives 'no input' in 'any application' | |
# > Output replaces selected text | |
# Add Shortcut (e.g. Ctrl+Cmd+T - it's hard to find a free shortcut!): | |
# > Preferences > Keyboard > Keyboard Shortcuts > Services | |
# When setting up Keyboard Shortcut, *exit* the target app before testing. (It seems shortcuts are only refreshed when app is launched) | |
# Adjust 'Short' Date format |