How to push OS Details from Source field data to Custom Field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2024 08:56 AM - edited 07-04-2024 08:59 AM
Hi,
I stuck in requirement. I want to push OS Details to custom field from Source field. Attaching sample source data please check it and help me implement this feature.
Source field table: Discovered Item (sn_sec_cmn_src_ci)
Regards,
Sanju.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2024 08:59 AM
Hi,
This looks like a standard JSON formatted string.
What's the issue? What do you need help with ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2024 09:12 AM
Hi @OlaN
Yes, it is JSON format string. Requirement is I want to Copy OS details to custom field from Source Data.
Regards,
Sanju.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2024 09:17 AM
Okay,
let me give an example, and see if it helps you.
var sourceDataObj = {"tags":["CloudAgent","hello","goodbye"], "OS":"Windows", "DNS":"Home"};
gs.info('OS: ' + sourceDataObj.OS);
// Prints --> OS: Windows
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2024 09:23 AM