- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2015 11:07 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2015 11:29 PM
Hi Ganga,
Current.caller_id will give you the sys_id of the field value populated. Current is the object with which you can get the field data on the current form.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2015 11:29 PM
Hi Ganga,
Current.caller_id will give you the sys_id of the field value populated. Current is the object with which you can get the field data on the current form.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2015 11:53 PM
Hi Ganga,
The current.caller_id gives you the current value that is there in the caller_id field. It is used in glide script.
You can take some from these below websites:
Hope it helps.
Regards,
Ayan

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2015 12:49 AM
Refer the wiki documentation about business rules. You will find the needed info there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2015 04:36 AM
current is effectively a GlideRecord object of the record that you are currently viewing. Using the GlideRecord API you can retrieve and set field data of the current record.
More details about the GlideRecord API is available in the ServiceNow Wiki:
With reference to current.caller_id, caller_id is a field on the current record (e.g. a particular incident). So you can retrieve the value of the field, example:
var caller = current.caller_id; //get the value
current.caller_id = '<value>'; // set the value
Hope that helps