Bug 636814: Rename WIP Ledger Entries to Subcontracting WIP Entries#8361
Bug 636814: Rename WIP Ledger Entries to Subcontracting WIP Entries#8361ChethanT wants to merge 1 commit into
Conversation
Rename page caption, action captions, and tooltips from 'WIP Ledger Entries' to 'Subcontracting WIP Entries' to clearly identify the scope of the page and improve discoverability within the Subcontracting module. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
| page 99001560 "Subc. WIP Ledger Entries" | ||
| { | ||
| ApplicationArea = Manufacturing; | ||
| Caption = 'WIP Ledger Entries'; |
There was a problem hiding this comment.
CRLF line ending on caption change
The modified Caption line ends with a carriage return (^M), introducing a lone CRLF into an otherwise LF-only file. This is a minor code-quality issue but will cause noisy diffs and may trip up linters.
Recommendation:
- Remove the trailing carriage return from line 10.
| Caption = 'WIP Ledger Entries'; | |
| Caption = 'Subcontracting WIP Entries'; |
👍 useful · ❤️ especially valuable · 👎 wrong - reply with why
Summary
Root Cause
The page caption and action captions used a generic name ("WIP Ledger Entries") that didn't identify the Subcontracting scope.
Fix
Captionproperty on page 99001560 "Subc. WIP Ledger Entries"CaptionandToolTipon 8 page extension actions across production order, work center, and item list pagesToolTipon table extension field referencing the old nameTest
No automated test — this is a UI caption/tooltip-only change with no logic impact.
Fixes AB#636814
🤖 Generated with GitHub Copilot