Block Deletion of Record from any table
Vineeth.R
Member Posts: 121
Hi Friends,
I want to block everyone from deleting records from one table. I should not be able to delete records even from a report(indirectly). Is there such a control i can define in navision table property or SQL for that table?
I know i can control thru roles and permission. any other way?
I want to block everyone from deleting records from one table. I should not be able to delete records even from a report(indirectly). Is there such a control i can define in navision table property or SQL for that table?
I know i can control thru roles and permission. any other way?
Thanks and Regards
Vineeth.R
Vineeth.R
0
Comments
-
Go the Table Properties --> Permissions and then you can apply the permissions you want ....0
-
Hi clever,
Table properties do not help.
I want no one to delete any records from Product Group (5723) table. Accidentally data is getting deleted from here. We do not know which program is deleting it.
Without controlling the roles and permission of users is there a way to stop this?
thanks
VineethThanks and Regards
Vineeth.R0 -
If there really is no other way you might consider SQL triggers.0
-
If you are using NAV2009R2 or NAV2013, you can use OnDatabaseDelete-function in codeunit 1. Test if the recordreference is your table and if it is raise an ERROR.
This function is triggered also if the DELETE is done by C/AL code instead of the user.Regards,Alain Krikilion
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!0 -
Hi Kriki,
i tried the below code in codeunit 1 but it did not work. Can you please explain how to use the code
OnDatabaseDelete(RecRef : RecordRef)
ChangeLogMgt.LogDeletion(RecRef);
IntegrationManagement.OnDatabaseDelete(RecRef);
IF RecRef.NUMBER = 5723 THEN
ERROR('cannot delete');Thanks and Regards
Vineeth.R0 -
Did you arm it in GetDatabaseTableTriggerSetup and restart the client before testing?0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 323 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions

