Related Articles
VBScript Constants, like vbCrLf, etc
This is a link to a page that contains a list of all the built-in VBScript constants: http://powerasp.net/content/new/vbscript-constants.asp
Clean String Functions - Remove Unwanted Characters
Source: http://www.code-tips.com/2009/04/vbscript-string-clean-function-remove.html Specify specific characters to remove or replace Function strClean (strtoclean) Dim objRegExp, outputStr Set objRegExp = New Regexp objRegExp.IgnoreCase = True ...
Examples of using Connect Creatio Class Functions In Javascript
This code was used to lookup a value inside of SugarCRM using the Sugar REST connector. function scriptedField() { var res = ""; res = vals["Branch Name"]; if (res) { Starfish.LogMessage(res.toString()); } res = ...
Scripting Class Object
From within VBScript operations (ScriptedVariable, VBScriptProcedure, ScriptedField) in additional to normal VBScript functions, the developer has access to a custom “Connect Creatio” class. The tables below define its usage. This class may also be ...
Format Phone Number
Here are a couple of sample functions to help you clean up phone numbers. Function ScriptedField dim oldphone dim phone dim xPos dim plusPos dim extension oldphone="@@ORG:phone_office@@" phone=oldphone if len(phone) <> 0 then 'Remove all non-numberic ...