- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2022 01:16 AM
Hi,
While creating KB article I've seen there is a field "summary" in kb_knowledge table. This field is read-only referring kb_knowledge_summary table and getting populated automatically on creating a new KB article. I wonder how this field getting auto populated. I saw BRs and client scripts but nothing found regarding that field. Can anyone tell me how this field getting data?
Solved! Go to Solution.
- Labels:
-
Case and Knowledge Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2022 02:25 AM
Please check these Business rules:
These business rules execute when KB Article is inserted/updated and it call some functions (incrementMajorVersion or incrementMinorVersion) of script include KBVersioning.
KBVersioning script include extends OOB Read-only script include KBVersioningSNC.
You can find the definition of these functions in KBVersioningSNC. There they update summary.
Thanks,
Anil Lande
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2022 01:21 AM
Hi,
Please open the dictionary of that field and see if it is having any default value or calculated value. (Open dictionary in advanced view.)
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2022 02:07 AM
I did. No default value and no calculated value for that field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2022 02:25 AM
Please check these Business rules:
These business rules execute when KB Article is inserted/updated and it call some functions (incrementMajorVersion or incrementMinorVersion) of script include KBVersioning.
KBVersioning script include extends OOB Read-only script include KBVersioningSNC.
You can find the definition of these functions in KBVersioningSNC. There they update summary.
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2022 02:33 AM
Got it. Thank you Anil.