Arthur van de Vondervoort
Arthur van de Vondervoort
Related to issue: https://github.com/StefanMaron/BusinessCentral.LinterCop/issues/190. Because this could be experienced as a breaking change I've provided a setting in the LinterCop.json to enable the current behavior. When an external application uses...
  A small code-snippet to reproduce the problem: ```AL tableextension 50100 "VRA G/L Entry" extends "G/L Entry" { internal procedure GetCountryRegionCodeTxt(): Text var PurchCrMemoHdr: Record "Purch. Cr. Memo Hdr.";...
 The warning LC0016 "Caption is missing" is thrown on API pages of type API. In this example a global variable on the page. On a API page I personally...
```AL procedure MyProcedure() var SalesLine: Record "Sales Line"; begin SalesLine.SetRange("No.", '%1', ''); end; ``` The LC0008 rule should also be raised in this scenario.
Based on https://github.com/microsoft/BCApps/pull/607#discussion_r1497208591, the current implementation of the [LC0047 - Locked Label must have a suffix Tok.](https://github.com/StefanMaron/BusinessCentral.LinterCop/wiki/LC0047) rule seems to be invalid. Tok is meant to be used when the...
The LC0005 should also check on variables in a CalcFormula. ```AL table 50102 MyTable { fields { field(1; "MyField"; Integer) { } field(2; "Customer No."; Code[20]) { FieldClass = FlowField;...
**Describe the issue** In our Azure DevOps pipelines we've encountered an error on the `Download-BcNuGetPackageToFolder` step of the BcContainerHelper. The error message was `The remote server returned an error: (503)...
**Describe the issue** When using the `Replace-BcServerContainer` command it seems that this always returns a multitenant environment, 1) Created an new Azure VM from https://aka.ms/getbcext 2) Setting Multitenant = No...
**Describe the issue** I'm having troubles to get the Install-AzDevop working on both (install and upgrade) scenario's. I'll start on the upgrade scenario first. **B) Upgrade** When running the Install-AzDevop...
Using the Resolve-DependenciesFromAzureFeed in our Azure DevOps pipelines I would like to expand this function with two extra parameters: - ignoreAppVersion - ignoredPublishers **ignoreAppVersion** Would like to retrieve the most...