Popular Articles
Working with Variables
Variables can be used to store configurable information used by jobs and scripts. In the example below, several Variables have been defined. cc Use the following steps to walk through Viewing variables Selecting and changing a variable Navigate to ...
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 ...
Execute When
OP TYPE WHEN DESCRIPTION Job Initialization PRE OncePerJob Runs once per job before anything else get performed. Use this if you need to call GotoJob() and must first set up variables for your scripted loop. Will only be called once at the beginning ...
Creating a Global Script
To create a global script, click on the globe shaped icon and choose from VBScript, JavaScript, or C# global in the mappings ribbon.
Parse XML
First I add code and External Assemblies to the .NET GLobal section of the Mapping tab: using System; using System.Collections.Generic; using System.Xml; XmlDocument demographicsXML = new XmlDocument(); XmlNodeList nodes; External Assemblies: ...