Tag Archives: Table Level Script

Mandate Company’s Phone and Email Address using Table level Script

Sage CRM has proved beneficial for small or medium sized companies to handle the Customer Relationship Management in an efficient way. The base structure designed in the system itself is so easy to understand as well as promising that the system users will be equipped with all the information related to the Customer in a… Read More: Mandate Company’s Phone and Email Address using Table level Script »

Table Level Scripts Logging and Performance

In SageCRM, Table level script can be used for replicating SQL trigger like functionality.  Table level scripts help us handle the data update events properly and do corresponding actions within SageCRM. The beauty of it is we can use SageCRM API and write server side JavaScript like functionality to function similar to that of triggers.… Read More: Table Level Scripts Logging and Performance »

Retrieve Primary Keys in TLS

Table Level Scripts (TLS) are an alternative method of creating SQL triggers that can be performed in Sage CRM system. Table Level Script (TLS) are used to perform various operations after inserting records, updating or deleting records in Sage CRM. To perform operations, it is necessary to fetch the primary ID of the current entity in… Read More: Retrieve Primary Keys in TLS »

Table Level Scripts

In SQL we use “Triggers” to handle some activity after insert, update and delete operations on some SQL records. Sage CRM provides a similar option within the application in the form of TLS (Table Level Scripts). The predefined events in TLS i.e. Update(), Post Insert(), Delete() and Insert() allows you to have operations on insert,… Read More: Table Level Scripts »

Writing Table Level Script is a hectic job ? – Try this instead…

Worldwide developers face this that they have to write longer and longer Table Level Scripts to make business logic work and a single issue will force them to create multiple Component files again and again to modify the TLS. I wonder if anyone knows there is a way to avoid this nuisance by using simple… Read More: Writing Table Level Script is a hectic job ? –… »

Some guidelines to avoide Time out errors caused by Table Level Scripts

For handeling any of your Post Recod insert activity the very first option that comes to your mind is the Table Level Script. You can make use of PostInsertRecord function in order to handle the Post Insert Record activities. It is quites simple to make use of this standard functionality provided by Sage CRM, but… Read More: Some guidelines to avoide Time out errors caused by Table… »