Skip to content

Commit 4feacf4

Browse files
Update Excel report caption and about text (microsoft#28317)
<!-- Thank you for submitting a Pull Request. If you're new to contributing to AlAppExtensions please read our pull request guideline below * https://github.com/microsoft/ALAppExtensions/blob/main/CONTRIBUTING.md --> #### Summary <!-- Provide a general summary of your changes --> - Updated Excel report about title/text to match documentation and standards. - Update Excel report captions and remove preview text. #### Work Item(s) <!-- Add the issue number here after the #. The issue needs to be open and approved. Submitting PRs with no linked issues or unapproved issues is highly discouraged. --> Fixes microsoft#28316 Fixes [AB#568899](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/568899) Co-authored-by: Jesper Schulz-Wedde <[email protected]>
1 parent 4e75418 commit 4feacf4

17 files changed

+90
-86
lines changed

Apps/W1/ExcelReports/app/src/Customer/EXRCustomerTopList.Report.al

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using Microsoft.ExcelReports;
1111
report 4409 "EXR Customer Top List"
1212
{
1313
ApplicationArea = All;
14-
Caption = 'Customer - Top List Excel (Preview)';
14+
Caption = 'Customer - Top List (Excel)';
1515
DataAccessIntent = ReadOnly;
1616
DefaultRenderingLayout = CustomerTopTrendExcel;
1717
ExcelLayoutMultipleDataSheets = true;
@@ -45,8 +45,8 @@ report 4409 "EXR Customer Top List"
4545

4646
requestpage
4747
{
48-
AboutText = 'This report contains aggregated sales (LCY) and balance (LCY) data for the top number of customers selected. The data is aggregated for the period specified in the request page''s Datefilter parameter.';
49-
AboutTitle = 'Customer - Top Trends';
48+
AboutTitle = 'About Customer - Top List (Excel)';
49+
AboutText = 'Review customers with the most transactions in a selected period. Identify sales trends and manage debt collections. Amounts are shown in local currency (LCY).';
5050
SaveValues = true;
5151
layout
5252
{

Apps/W1/ExcelReports/app/src/Financials/EXRAgedAccPayableExcel.Report.al

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using Microsoft.ExcelReports;
1414
report 4403 "EXR Aged Acc Payable Excel"
1515
{
1616
ApplicationArea = All;
17-
Caption = 'Aged Accounts Payable Excel (Preview)';
17+
Caption = 'Aged Accounts Payable (Excel)';
1818
DataAccessIntent = ReadOnly;
1919
DefaultRenderingLayout = AgedAccountsPayableExcel;
2020
ExcelLayoutMultipleDataSheets = true;
@@ -166,8 +166,8 @@ report 4403 "EXR Aged Acc Payable Excel"
166166
requestpage
167167
{
168168
SaveValues = true;
169-
AboutTitle = 'Aged Accounts Payable Excel';
170-
AboutText = 'This report contains aggregated aging data based on vendor ledger entries. The data is aggregated and bucketed according to the ‘Aged as of'' and ‘period length'' parameters in the reports request page. The aggregated data is summarized per the 2 global dimensions.';
169+
AboutTitle = 'About Aged Accounts Payables (Excel)';
170+
AboutText = 'Analyze vendor balances at the end of each period: by period (LCY), by period (FCY), or with an overview Due by Currencies. Monitor unpaid invoices, and prioritize payments for overdue accounts.';
171171

172172
layout
173173
{

Apps/W1/ExcelReports/app/src/Financials/EXRAgedAccountsRecExcel.Report.al

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using Microsoft.ExcelReports;
1414
report 4402 "EXR Aged Accounts Rec Excel"
1515
{
1616
ApplicationArea = All;
17-
Caption = 'Aged Accounts Receivable Excel (Preview)';
17+
Caption = 'Aged Accounts Receivable (Excel)';
1818
DataAccessIntent = ReadOnly;
1919
DefaultRenderingLayout = AgedAccountsReceivableExcel;
2020
ExcelLayoutMultipleDataSheets = true;
@@ -166,8 +166,8 @@ report 4402 "EXR Aged Accounts Rec Excel"
166166
requestpage
167167
{
168168
SaveValues = true;
169-
AboutTitle = 'Aged Accounts Receivable Excel';
170-
AboutText = 'This report contains aggregated aging data based on customer ledger entries. The data is aggregated and bucketed according to the ‘Aged as of'' and ‘period length'' parameters in the reports request page. The aggregated data is summarized per the 2 global dimensions.';
169+
AboutTitle = 'About Aged Accounts Receivable (Excel)';
170+
AboutText = 'Analyze customer balances at the end of each period, either in local or in foreign currency. Use the data as a gauge to measure the reliability of debt collections for your customers. You can also use it to help reconcile the customer subledger against the receivables accounts in the general ledger, assuming that direct posting is disabled. You can see the balance in both your local currency (LCY) and foreign currency (FCY).';
171171

172172
layout
173173
{

Apps/W1/ExcelReports/app/src/Financials/EXRConsolidatedTrialBalance.Report.al

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ using Microsoft.ExcelReports;
88
report 4410 "EXR Consolidated Trial Balance"
99
{
1010
ApplicationArea = All;
11-
Caption = 'Consolidated Trial Balance Excel (Preview)';
11+
Caption = 'Consolidated Trial Balance (Excel)';
1212
DataAccessIntent = ReadOnly;
1313
DefaultRenderingLayout = ConsolidatedTrialBalanceExcel;
1414
ExcelLayoutMultipleDataSheets = true;
@@ -74,8 +74,8 @@ report 4410 "EXR Consolidated Trial Balance"
7474
requestpage
7575
{
7676
SaveValues = true;
77-
AboutTitle = 'Consolidated Trial Balance Excel';
78-
AboutText = 'This report contains Net Change or Balance of the different G/L Accounts for the selected period, aggregated per business unit.';
77+
AboutTitle = 'About Consolidated Trial Balance (Excel)';
78+
AboutText = 'View a snapshot of your consolidated chart of accounts at a given point to check the debit and credit net change and closing balance. You can see the trial balance in both your local currency (LCY) and additional reporting currency (ACY).';
7979
layout
8080
{
8181
area(Content)

Apps/W1/ExcelReports/app/src/Financials/EXRFixedAssetAnalysisExcel.Report.al

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ report 4412 "EXR Fixed Asset Analysis Excel"
1010
{
1111
ApplicationArea = All;
1212
AdditionalSearchTerms = 'FA Analysis Excel,FA Analysis';
13-
Caption = 'Fixed Asset Analysis Excel (Preview)';
13+
Caption = 'Fixed Asset Analysis (Excel)';
1414
DataAccessIntent = ReadOnly;
1515
DefaultRenderingLayout = FixedAssetAnalysisExcel;
1616
ExcelLayoutMultipleDataSheets = true;
@@ -79,8 +79,8 @@ report 4412 "EXR Fixed Asset Analysis Excel"
7979
requestpage
8080
{
8181
SaveValues = true;
82-
AboutTitle = 'Fixed Asset Analysis Excel';
83-
AboutText = 'This report shows different fixed asset details in the given time periods, such as book value, depreciation, and acquisitions. You can specify the starting and ending dates for the report, and whether you want to include only sold assets or include inactive fixed assets.';
82+
AboutTitle = 'About Fixed Asset Analysis (Excel)';
83+
AboutText = 'Get an overview of your fixed assets for a given period of time, including: book values, depreciation, and acquisitions. You can specify the starting and ending dates for the report, whether to include only sold assets, or whether to include inactive fixed assets.';
8484
layout
8585
{
8686
area(Content)

Apps/W1/ExcelReports/app/src/Financials/EXRFixedAssetDetailsExcel.Report.al

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ report 4411 "EXR Fixed Asset Details Excel"
1010
{
1111
ApplicationArea = All;
1212
AdditionalSearchTerms = 'FA Details Excel,FA Details';
13-
Caption = 'Fixed Asset Details Excel (Preview)';
13+
Caption = 'Fixed Asset Details (Excel)';
1414
DataAccessIntent = ReadOnly;
1515
DefaultRenderingLayout = FixedAssetDetailsExcel;
1616
ExcelLayoutMultipleDataSheets = true;
@@ -68,8 +68,8 @@ report 4411 "EXR Fixed Asset Details Excel"
6868
requestpage
6969
{
7070
SaveValues = true;
71-
AboutTitle = 'Fixed Asset Details Excel';
72-
AboutText = 'This report shows ledger entries for one or more fixed assets.';
71+
AboutTitle = 'About Fixed Asset Details (Excel)';
72+
AboutText = 'Get details about fixed assets transactions and reference data that can help you manage your fixed assets. You can choose to include reversed entries and inactive fixed assets.';
7373
layout
7474
{
7575
area(content)

Apps/W1/ExcelReports/app/src/Financials/EXRFixedAssetProjected.Report.al

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ report 4413 "EXR Fixed Asset Projected"
1111
{
1212
ApplicationArea = All;
1313
AdditionalSearchTerms = 'FA Projected Value, FA Projected Value Excel';
14-
Caption = 'Fixed Asset Projected Value Excel (Preview)';
14+
Caption = 'Fixed Asset Projected Value (Excel)';
1515
DataAccessIntent = ReadOnly;
1616
DefaultRenderingLayout = FixedAssetProjectedValueExcel;
1717
ExcelLayoutMultipleDataSheets = true;
@@ -81,8 +81,8 @@ report 4413 "EXR Fixed Asset Projected"
8181
requestpage
8282
{
8383
SaveValues = true;
84-
AboutTitle = 'Fixed Asset Projected Value Excel';
85-
AboutText = 'This report shows how Fixed Asset Ledger entries would look if depreciated in the given dates.';
84+
AboutTitle = 'About Fixed Asset Projected Value (Excel)';
85+
AboutText = 'Explore projected depreciation amounts and book value for a future period for your fixed assets. You can choose to include projected disposals and use the accounting periods specified in the Accounting Period table in the report.';
8686
layout
8787
{
8888
area(Content)

Apps/W1/ExcelReports/app/src/Financials/EXRTrialBalPrevYearExcel.Report.al

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using Microsoft.ExcelReports;
1313
report 4407 "EXR Trial Bal. Prev Year Excel"
1414
{
1515
ApplicationArea = All;
16-
Caption = 'Trial Balance/Previous Year Excel (Preview)';
16+
Caption = 'Trial Balance/Previous Year (Excel)';
1717
DataAccessIntent = ReadOnly;
1818
DefaultRenderingLayout = TrialBalancePrevYearExcelLayout;
1919
ExcelLayoutMultipleDataSheets = true;
@@ -92,8 +92,9 @@ report 4407 "EXR Trial Bal. Prev Year Excel"
9292
requestpage
9393
{
9494
SaveValues = true;
95-
AboutTitle = 'Trial Balance/Previous Year Excel';
96-
AboutText = 'This report contains aggregated general ledger data for the trial balance with debit/credit columns for net change and balance. A report is shown for both local currency (LCY) and additional reporting currency (ACY, the latter only showing data if Additional Reporting Currency is in use. In addition to debit/credit for net change and balance the report shows the net debit/credit amount for both net change and balance for comparison. The aggregation is for the period specified in the report''s request page''s Datefilter parameter and summarized per the 2 global dimensions per g/l account category.';
95+
AboutTitle = 'About Trial Balance/Previous Year (Excel)';
96+
AboutText = 'View a trial balance with debit/credit columns for net change and balance for this year and previous year directly in Excel. See amounts in both local currency (LCY) and additional reporting currency (ACY), the latter only showing data if Additional Reporting Currency is in use. In addition to debit/credit for net change and balance the report shows the net debit/credit amount for both net change and balance for comparison. Data is summarized for the period specified in the report''s request page''s Date Filter parameter and grouped by the 2 global dimensions per G/L account category.';
97+
9798
layout
9899
{
99100
area(content)

Apps/W1/ExcelReports/app/src/Financials/EXRTrialBalanceBudgetExcel.Report.al

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using Microsoft.ExcelReports;
1313
report 4406 "EXR Trial BalanceBudgetExcel"
1414
{
1515
ApplicationArea = All;
16-
Caption = 'Trial Balance/Budget Excel (Preview)';
16+
Caption = 'Trial Balance/Budget (Excel)';
1717
DataAccessIntent = ReadOnly;
1818
DefaultRenderingLayout = TrialBalanceBudgetExcelLayout;
1919
ExcelLayoutMultipleDataSheets = true;
@@ -73,8 +73,9 @@ report 4406 "EXR Trial BalanceBudgetExcel"
7373
requestpage
7474
{
7575
SaveValues = true;
76-
AboutTitle = 'Trial Balance/Budget Excel';
77-
AboutText = 'This report contains aggregated general ledger data for the trial balance with debit/credit columns for net change and balance. A report is shown for both local currency (LCY) and additional reporting currency (ACY, the latter only showing data if Additional Reporting Currency is in use. In addition to debit/credit for net change and balance the report shows the net debit/credit amount for both net change and balance for comparison. The aggregation is for the period specified in the report''s request page''s Datefilter parameter and summarized per the 2 global dimensions per g/l account category.';
76+
AboutTitle = 'About Trial Balance/Budget (Excel)';
77+
AboutText = 'View a snapshot of your chart of accounts at a given point to check the debit and credit net change and closing balance compared to the budget. Amounts are shown in local currency (LCY).';
78+
7879
layout
7980
{
8081
area(content)

Apps/W1/ExcelReports/app/src/Financials/EXRTrialBalanceExcel.Report.al

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ report 4405 "EXR Trial Balance Excel"
1414
{
1515
AdditionalSearchTerms = 'year closing,close accounting period,close fiscal year';
1616
ApplicationArea = All;
17-
Caption = 'Trial Balance Excel (Preview)';
17+
Caption = 'Trial Balance (Excel)';
1818
DataAccessIntent = ReadOnly;
1919
DefaultRenderingLayout = TrialBalanceExcelLayout;
2020
ExcelLayoutMultipleDataSheets = true;
@@ -80,8 +80,9 @@ report 4405 "EXR Trial Balance Excel"
8080
requestpage
8181
{
8282
SaveValues = true;
83-
AboutTitle = 'Trial Balance Excel';
84-
AboutText = 'This report contains aggregated general ledger data for the trial balance with debit/credit columns for net change and balance. A report is shown for both local currency (LCY) and additional reporting currency (ACY), the latter only showing data if Additional Reporting Currency is in use. The aggregation is for the period specified in the report''s request page''s Datefilter parameter and summarized per the 2 global dimensions per g/l account category.';
83+
AboutTitle = 'About Trial Balance (Excel)';
84+
AboutText = 'View a snapshot of your chart of accounts at a given point to check the debit and credit net change and closing balance. You can see the trial balance in both your local currency (LCY) and additional reporting currency (ACY).';
85+
8586
layout
8687
{
8788
area(content)

0 commit comments

Comments
 (0)