Scott Carpenter

  • Total activity 1376
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 1
  • Subscriptions 861

Activity overview

Latest activity by Scott Carpenter
  • Scott Carpenter created an article,

    Using the {{OLD}} function to log history of multiple fields

    Another useful application of the {{OLD}} function is to use it as a history log. You can use the {{OLD}} function to output the history of changes made to multiple fields in a single triggered fie...

  • Scott Carpenter created an article,

    App Script Library

    Application Scripts (AppScripts) are powerful and can bring a wealth of functionality to an application. This library contains common operations frequently used by the TrackVia team when engineerin...

  • Scott Carpenter created an article,

    App Script Quick Reference

    App Script Cheat Sheet Find examples of many common operations and tasks Update a value on the triggered recordcurrentValues["Customer"] = "John Smith";currentValues["Age"] = 123; Update a value o...

  • Scott Carpenter created an article,

    Zapier

    Zapier is a popular online automation tool that enables users to connect over 5,000 business apps without writing code. It offers an intuitive drag and drop workflow builder that allows users to qu...

  • Scott Carpenter created an article,

    Workato

    Workato is a no-code enterprise automation platform that helps businesses connect discrete data sources without writing code. It offers a visual workflow designer that allows users to build and man...

  • Scott Carpenter created an article,

    Script Frequently Asked Questions

    What are the rules of script execution? Scripts run within a 'transaction' event on creation, update, or deletion of a record. Therefore these scripts and events must be: Atomic: Complete in its e...

  • Scott Carpenter created an article,

    Viewing Console & Error Logs

    When an unhandled error is thrown, the stack trace may be found in the Table editor. Handled exceptions will also be logged in the Table editor, but without a stack trace. It is important to keep t...

  • Scott Carpenter created an article,

    Handling Errors

    Exceptions can be thrown in TrackVia app scripts when something unexpected happens, such as an invalid input or an error with your app script logic. These exceptions can be handled by wrapping the ...

  • Scott Carpenter created an article,

    App Script Common Use Cases

    Update Current Record Update current record's "Status" and "Amount" fields: currentValues["Status"] = "Active";currentValues["Amount"] = 2125.75;   Update Parent Record Update a linked parent recor...

  • Scott Carpenter created an article,

    App Script Functions

    Save Record Description Create a new record in the provided table. Returns Collection of record data created for new record. Usage Map record = save("<TableName>", ["<FieldName>": "<FieldValue>"]);...