How summary field is getting populated in kb_knowledge table?

Vasu ch
Kilo Sage

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?

find_real_file.png

1 ACCEPTED SOLUTION

Please check these Business rules:

find_real_file.png

 

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.

find_real_file.png

 

 

Thanks,

Anil Lande

 

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande

View solution in original post

4 REPLIES 4

Anil Lande
Kilo Patron

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

 

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande

I did. No default value and no calculated value for that field.

Please check these Business rules:

find_real_file.png

 

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.

find_real_file.png

 

 

Thanks,

Anil Lande

 

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande

Got it. Thank you Anil.