No difference between normal live message entry and entry created via Journal Field.DescriptionThere is no difference between live message records created through Journal field or through Live Feed UI. Feedback on a knowledge article can be provided either through Live Feed or Legacy Feedback. Feedback provided through legacy feedback is saved to kb_feedback table.The property glide.knowman.use_live_feed allows a switch between them at any point of time.The script engine KnowledgeCommentsEngine keeps both feedback systems in sync. For example, any change to a live feed comment is relayed to kb_feedback and vice versa. When a customer adds a journal input field to kb_knowledge table, any value posted to the journal input field is also relayed to legacy feedback kb_feedback by the script engine, as journal input values are saved to live_message table.Due to this, Journal Input field values are being displayed as article feedback. There needs to be a way to differentiate between a live message record created through live feed UI vs a created through journal field. Also, live feed does not display comments when journal input field is added to kb_knowledge table.Steps to Reproduce Add a new field of type Journal Input to the kb_knowledge formNavigate to any article and view the article using the related linkWhile viewing the article, add feedbackNavigate back to the article in kb_knowledgeEnter text into the added journal field and post or saveAdd the Knowledge Feedback related list to the article record, and note the addition of a new recordClick the View Article related link again to see the article noting the text submitted displayed as user feedbackWorkaroundThis is by design. The workaround consists in not propagating the comments from live feed to Legacy Feedback table, and disabling the live feed commenting system on the article view page. The temporary workaround would be as the following: 1. Disable live_feed [Set glide.knowman.use_live_feed sys_property to false]2. Create a BR as followstable: kb_feedbackadvanced: truewhen: beforeinsert: trueadvanced tab => condition: current.getEngineParameter("KnowledgeCommentsEngine") == "false"actions => abort action: trueThis Workaround is mentioned in this PRB and CS5113097 along with the following caveats. (attached the XML of the business rule. Customers are suggested to import it first in their Dev env and test it properly.)1. With the proposed workaround, the propagation of entries from live_feedback to kb_feedback will be blocked2. The entries into kb_feedback will continue to be propagated to live_feedback3. Live Feedback needs to be disabled (glide.knowman.use_live_feed = false) on the article view page otherwise they will start seeing the entries created by Journal Field again. 4. The other limitation of the above provided workaround is that customers will not be able to use Live Feed commenting system, as it may contain the Journal Entries, and anything entered into the live feed comments will also not be propagated to the Legacy Feedback table. So both the tables would no longer be in sync. This might end up in a situation where customers can use only the Legacy Feedback system.Related Problem: PRB878095