- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 07:29 AM
I am trying to find documentation for new field task_effective_number released in Paris.
There used to be an article in HI, but the article was retired.
Does anyone know the intent for the task_effective_number or where to find documentation about this field?
Thanks for your time,
Lon
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 08:05 AM - edited 08-25-2023 08:08 AM
Hello @Lon Landry4,
Check this link - https://www.servicenow.com/community/developer-forum/task-effective-number-in-paris-notifications/m-...
Effective Number (task_effective_number) is the identifying number that has the UR number if the task has a Universal Request associated with it. If it is not associated with a Universal Request, then the Effective Number holds the current task number.
It is important to have these columns in the instance as they are referred to at multiple places in HR and ITSM code.
Kind Regards,
Swarnadeep Nandy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 07:49 AM - edited 08-25-2023 07:51 AM
Hi,
A google search shows: https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0863532
but that KB is not public.
See:
The field is Calculated as: current.universal_request.nil() ? current.number: current.universal_request.number
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 08:22 AM
The link above is a retired article,,,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 08:05 AM - edited 08-25-2023 08:08 AM
Hello @Lon Landry4,
Check this link - https://www.servicenow.com/community/developer-forum/task-effective-number-in-paris-notifications/m-...
Effective Number (task_effective_number) is the identifying number that has the UR number if the task has a Universal Request associated with it. If it is not associated with a Universal Request, then the Effective Number holds the current task number.
It is important to have these columns in the instance as they are referred to at multiple places in HR and ITSM code.
Kind Regards,
Swarnadeep Nandy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 08:33 AM
Thanks for the reply; I spent a fair amount of time searching via google, Hi, Community, and documentation site, but I missed this. This is super helpful.