Inhibit business rules for Table API ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2023 05:24 AM
Hello Community,
I'm writing a number of data fixes for our cmdb, using the Table api. Sometimes the fixes cause side effects I'd rather not have to clean up afterwards. I presume this is due to business rules.
I'd rather do an update with the business rules disabled; comparable to GlideRecord.setWorkflow(false).
Is it possible to do this using the Table API ?
THX !

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2023 06:19 AM
Hi @JG6 ,
I don't think the scenario which are you are trying is achievable through Table API.
As Table API is OOB functionality it doesn't allow you anything to code to stop the further processing.
If you want the further processing to be stopped then go for Scripted REST API's which has full feasibility to code.
Please mark correct if my response has solved your query.
Cheers,
Mohammed Basheer Ahmed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2023 12:30 AM
That is actually a very clever solution ! One could actually implement his own table api this way.
many thanks indeed ! 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2023 06:50 AM
Please see:
And yes, that is what 'setWorkflow(false)' does.