
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-06-2020 01:36 AM
Hi
I just create a custom table in Human Resource: Lifecycle Event scope. Now I want to delete this table but whenever I tried to delete it shows this "Delete operation against 'sn_hr_le_bms_le_table' from scope 'rhino.global' has been refused due to the table's cross-scope access policy" error.
I tired it by check the "Can Delete" but still I am unable to delete it.
Really appreciate for your thoughts and answer.
Thanks
Solved! Go to Solution.
- Labels:
-
HR Service Delivery

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-06-2020 01:46 AM
Hi Sufiyan,
You can below below snippet in background script.
var tableDeletion = new TableUtils();
tableDeletion.dropAndClean('Table_nam_here');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-06-2020 01:46 AM
Hi Sufiyan,
You can below below snippet in background script.
var tableDeletion = new TableUtils();
tableDeletion.dropAndClean('Table_nam_here');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-06-2020 02:17 AM
Thanks