Unable to delete custom table that I just create in scoped application

Sufiyan Memon
Kilo Sage
Kilo Sage

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

 find_real_file.png

1 ACCEPTED SOLUTION

Jaspal Singh
Mega Patron
Mega Patron

Hi Sufiyan,

 

You can below below snippet in background script.

var tableDeletion = new TableUtils();
tableDeletion.dropAndClean('Table_nam_here');

 

View solution in original post

2 REPLIES 2

Jaspal Singh
Mega Patron
Mega Patron

Hi Sufiyan,

 

You can below below snippet in background script.

var tableDeletion = new TableUtils();
tableDeletion.dropAndClean('Table_nam_here');

 

Thanks @Jaspal Singh . It worked