It shows an error when clicking the delete icon .some records only show this error, remaining records have no problem deleting. how to solve this issue?
Hi Prabinraj,
It looks like you are getting a foreign key error,
This table Identifier which you want to delete is used in another table as a foreign key attribute.
Please check your data model, "Delete rule " is Protect for that attribute that's why you are getting this error.
You need to check and delete the record in the another table where the foreign key is kept and then delete this record in base table.
Hi,
This error means, when you are trying to delete these records they have relationships in other tables also (customer activities). So first you need to delete record from customer activities then only will be able to delete these records. This is due to the relationship between both the tables right now delete rule is "protect". Either delete rule should be delete or ignore to get delete without error.
regards
Hello,
check this post https://www.outsystems.com/forums/discussion/72127/delete-records/#
Regards