Arcsight Integration event mapping to security incident

Pranali18
Tera Expert

Hi, 


We have ArcSight Integration in system and under that mapping some fields from there to ServiceNow. There is one time field which has time in "GMT" but when it mapped to ServiceNow security incident it convert it to "PST".
We have custom script include to convert it to again "GMT" which is converting date but for time it always shows 1 AM. Using "new GlideScheduleDateTime().convertTimeZone();" query for it.
Please advice on this.

 

Thanks,

2 REPLIES 2

James Chun
Kilo Patron

Hi @Pranali18,

 

Can you share some details on the following:

  • How the integration is done? Does it use ServiceNow REST API or 3rd party tool
  • Payload
  • Your custom script include

Thanks

Hi @James Chun 

It's 3rd party tool.
In script include we are using below API 
new GlideScheduleDateTime(destinationValue).convertTimeZone('PST','GMT');

destinationValue= date and time in PST format

 

Thanks