Announcements
No record found.
To modify the description in Item Ledger Entries, you'll need to update your AL code to include the RIMD permission set, which allows you to modify data in the table.
RIMD
Here's the updated code:
codeunit 50101 "Modify Item Ledger Entry" { Permissions = tabledata "Item Ledger Entry" = rimd; trigger OnRun() var ItemLedgerEntry: Record "Item Ledger Entry"; begin if ItemLedgerEntry.Get(<Entry No.>) then begin ItemLedgerEntry.Description := 'New Description'; ItemLedgerEntry.Modify(); end; end; }
Make sure to replace <Entry No.> with the specific entry number you want to update. This codeunit will grant the necessary permissions to read, insert, modify, and delete data in the "Item Ledger Entry" table.
<Entry No.>
Deploy the extension and run the codeunit to apply the changes.
If you need further assistance, feel free to ask!
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
We are thrilled to have these Champions in our Community!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
OussamaSabbouh 1,875 Super User 2026 Season 1
YUN ZHU 926 Super User 2026 Season 1
Teagen Boll 642 Super User 2026 Season 1