Note

Currently, you cannot sign-up to the community. We're fixing the issue. Sorry for the inconvenience. Please use AIDA (check below) for any queries.

The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction


You've accomplished the successful integration of ServiceNow and Jira. Let's syncronize the email adress of the caller field on Servicenow.


Use-Case


Within the ServiceNow environment, specific fields hold a wealth of information beyond what's merely displayed on the surface. For instance, take the "caller" field – while it does show the user's name, it's intricately linked to a broader table housing a multitude of additional fields.



Through the utilization of Exalate, we're able to tap into this connected table and effectively synchronize all these supplementary fields. This capability significantly enhances the depth of data exchanged between the two platforms.


To provide you with a more concrete understanding of the process, I've included the specific outgoing sync code block I showcased in the instructional video.

To complement this visual aid, I'll also ensure that you have access to the documentation that guided me through this integration.



Hope you have a great day.


Thank you.

Kind regards,
Mathieu Lepoutre

...

Code Block
languagegroovy
titleOutgoing Sync Servicenow
linenumberstrue
if(entity.tableName == "incident") {
    replica.key            = entity.key
    replica.summary        = entity.short_description
    replica.description    = entity.description
    replica.attachments    = entity.attachments
    replica.comments       = entity.comments
    replica.state          = entity.state
    
    
    //email from the caller
    replica.caller_id = entity.caller_id
    
    replica.caller_email  = nodeHelper.getTableByLink(incident.caller_id?.link)?.email
}


Widget Connector
urlhttp://youtube.com/watch?v=R7CxQ5M-aq8

Questions

Questions List
filterrecent
asktrue
include-topicsany
spaceexacom

...