-
Notifications
You must be signed in to change notification settings - Fork 412
636017 Move Manufacturing report action tooltips to report objects #9580
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -156,15 +156,13 @@ page 9010 "Production Planner Role Center" | |
| Caption = 'Capacity Task List'; | ||
| Image = "Report"; | ||
| RunObject = Report "Capacity Task List"; | ||
| ToolTip = 'View the production orders that are waiting to be processed at the work centers and machine centers. Printouts are made for the capacity of the work center or machine center). The report includes information such as starting and ending time, date per production order and input quantity.'; | ||
| } | ||
| action("Subcontractor - Dispatch List") | ||
| { | ||
| ApplicationArea = Manufacturing; | ||
| Caption = 'Subcontractor - Dispatch List'; | ||
| Image = "Report"; | ||
| RunObject = Report "Subcontractor - Dispatch List"; | ||
| ToolTip = 'View the list of material to be sent to manufacturing subcontractors.'; | ||
| } | ||
| } | ||
| group(Production) | ||
|
|
@@ -176,7 +174,6 @@ page 9010 "Production Planner Role Center" | |
| Caption = 'Production Order - &Shortage List'; | ||
| Image = "Report"; | ||
| RunObject = Report "Prod. Order - Shortage List"; | ||
| ToolTip = 'View a list of the missing quantity per production order. The report shows how the inventory development is planned from today until the set day - for example whether orders are still open.'; | ||
| } | ||
| action("D&etailed Calculation") | ||
| { | ||
|
|
@@ -204,7 +201,6 @@ page 9010 "Production Planner Role Center" | |
| Caption = 'Production Order Statistics'; | ||
| Image = "Report"; | ||
| RunObject = report "Production Order Statistics"; | ||
| ToolTip = 'View statistical information, such as the value of posted entries, for the record.'; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR is described as removing duplicate ToolTip properties in favor of a single canonical ToolTip on the target report, relying on the 2025 wave 1 action-inherits-target-tooltip feature.For most actions the removed page-level text is an exact match of the new report-level text, but for the 'Production Order Statistics' action on Production Planner Role Center, Shop Supervisor Mfg Foundation, and Shop Supervisor Role Center (both the IT and W1 forks, 6 files total) the removed text was 'View statistical information, such as the value of posted entries, for the record.' -- materially different wording from the canonical text now added to ProductionOrderStatistics.Report.al ('View statistical information about the production order's direct material and capacity costs and overhead as well as its capacity need in the time unit of measure.'). End users of those three role centers will now see different, longer tooltip text than before, and translators will need to re-localize the changed string. Confirm this wording change is intentional (not just a de-duplication) before merging, or restore page-specific ToolTips on those three actions if the shorter wording was deliberate. 👍 useful · ❤️ especially valuable · 👎 wrong - reply with why |
||
| } | ||
| action("Sta&tus") | ||
| { | ||
|
|
@@ -220,7 +216,6 @@ page 9010 "Production Planner Role Center" | |
| Caption = 'Inventory &Valuation WIP'; | ||
| Image = "Report"; | ||
| RunObject = Report "Inventory Valuation - WIP"; | ||
| ToolTip = 'View inventory valuation for selected production orders in your WIP inventory. The report also shows information about the value of consumption, capacity usage and output in WIP.'; | ||
| } | ||
| action("Prod. Order - &Job Card") | ||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The canonical ToolTip added to CapacityTaskList.Report.al carries a pre-existing stray closing parenthesis: '...capacity of the work center or machine center).
The report includes...'. Shop Supervisor Role Center's own 'Capacity Task List' action (both the IT and W1 forks) previously had the corrected wording without the stray ')'. Removing that page-level ToolTip in favor of the report-level one reintroduces the typo on Shop Supervisor Role Center, where it had been fixed. Since the report ToolTip is now the single source of truth for every page that runs this report, fixing the typo there benefits all callers.
👍 useful · ❤️ especially valuable · 👎 wrong - reply with why