Business Rule on History Table (sys_history_line)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2018 10:03 AM
Hello Guys,
I´m considering to create a Business Rule on History (sys_history_line) table, for when a specific record will inserted in this table I will create a record in another table.
But apparentely Business Rules doesn´t work for this table.
History LInes are created when I run this script for example
var gr = new GlideRecord("u_desktop");
gr.addQuery('name', 'AR00002713');
gr.query();
if ( gr.next() ){
new GlideHistorySet("u_desktop", gr.sys_id).generate();
}
I think that is because we cannot use Business Rules in some system tables, am i right?
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2018 04:33 PM
Sorry Jon, do you mean why I a need to create the Business Rule?