Examples of using Connect Creatio Class Functions In Javascript

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 = SmartLookup("TA6_Branch","id","[{\"name\":\"" + res + "\"}]");
 return res;
}
    • Related Articles

    • Using Connect Creatio Scripting Class Properties & Methods in C#

      See available Connect Creatio Scripting Class Variables, Properties and Methods. To use these variables, properties and methods, you must append "Starfish." to the beginning of variable, property or method AND you must use the exact capitalization as ...
    • 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 ...
    • Creatio Connect iPaaS Logging Features and Settings

      Creatio Connect iPaaS Logging Features and Settings Creatio Connect iPaaS has a number of options for logging and monitoring integration activity. Logging is required at various stages of the integration mapping process, during the testing phase ...
    • Connect Creatio security features

      StarfishETL security features     Compliance and data privacy ·       No data kept at rest on Starfish ETL iPaaS servers ·       Data in motion is encrypted using HTTPS Infrastructure protection ·       StarfishETL iPaaS servers hosted on AWS  ...
    • Writing to a local CSV from the Creatio Connect Cloud

      Even though more and more services are moving to cloud-based solutions, often times we still need to interface to on-premises software using CSV files. To do this using the Creatio Connect iPaaS system, you'll need to set up a Creatio Connect Ray. A ...