microsoft / navcontainerhelper

Official Microsoft repository for BcContainerHelper, a PowerShell module, which makes it easier to work with Business Central Containers on Docker.
MIT License
382 stars 245 forks source link

Customer Database to Container Database - Error while import Import-TestToolkitToNavContainer #1186

Closed aptMattKoe closed 4 years ago

aptMattKoe commented 4 years ago

Describe the issue I'm again on my way from the customer database to an container with customer data. It works for the first database realy good :) But another one does this errors while import the TestToolKit: (Warnings deleted, all informations are here at the bottom :))

TestVATResponse.Codeunit.al(7,27): error AL0132: 'Status' does not contain a definition for 'Accepted'
TestVATSubmission.Codeunit.al(9,9): error AL0118: The name '"Message Id"' does not exist in the current context
TestVATValidate.Codeunit.al(10,46): error AL0118: The name '"Additional Information"' does not exist in the current context
LibraryVATReport.Codeunit.al(13,97): error AL0132: '"VAT Report Config. Code"' does not contain a definition for 'VAT Return'
LibraryVATReport.Codeunit.al(19,97): error AL0132: '"VAT Report Config. Code"' does not contain a definition for 'VAT Return'
LibraryVATReport.Codeunit.al(20,34): error AL0118: The name '"Period Year"' does not exist in the current context
TestVATResponse.Codeunit.al(7,27): error AL0132: 'Status' does not contain a definition for 'Accepted'
TestVATSubmission.Codeunit.al(9,9): error AL0118: The name '"Message Id"' does not exist in the current context
TestVATValidate.Codeunit.al(10,46): error AL0118: The name '"Additional Information"' does not exist in the current context
LibraryVATReport.Codeunit.al(13,97): error AL0132: '"VAT Report Config. Code"' does not contain a definition for 'VAT Return'
LibraryVATReport.Codeunit.al(19,97): error AL0132: '"VAT Report Config. Code"' does not contain a definition for 'VAT Return'
LibraryVATReport.Codeunit.al(20,34): error AL0118: The name '"Period Year"' does not exist in the current context

it looks the same error like in #1157.

Version of the customers Database: image

This is the closest Artifact URL: 'https://bcartifacts.azureedge.net/onprem/16.0.11240.12085/de'

Is it possbible that these versions are incompatilbe? Those small steps? Or is there something I forget?

Scripts used to create container and cause the issue This is my current script for my purpose. I thought about to trim it to the realy important things but all of this could be important? deactivating users etc.?

##PARAMATER########################################################################################
$containerName = "DataToContainer"

$customerBCVersion = "16.0"
$customerBCCountry = "de"

$licenseFile = "C:\ProgramData\NavContainerHelper\mybak\myLicense.flf"
$bakFile = "C:\ProgramData\NavContainerHelper\mybak\customerDatabaseBAK2.bak"

$auth = "NavUserPassword"
$UserName = "Admin"
$Password = "P@ssword!"

# ####################################################################################

function New-BCCredential{
    [cmdletbinding()]
    Param(
        [ValidateSet('Windows','NavUserPassword','UserPassword','AAD')]
        [string] $ContainerAuth = "NavUserPassword",
        [Parameter(Mandatory)]
        [string] $ContainerUserName,
        [Parameter(Mandatory)]
        [string] $ContainerPlainPassword
    )
    ##Creating Credential Object##
    If ($ContainerAuth = "NavUserPassword") {
        $Credential = New-Object pscredential -ArgumentList $ContainerUserName , (ConvertTo-SecureString -String $ContainerPlainPassword -AsPlainText -Force)
    }
    else {
        $Credential = Get-Credential
    }
    Write-Output $Credential
}

function Update-HostFile{    
    [cmdletbinding()]

    # update hosts with kaspersky
    $containers = docker ps -aq
    $lastcontainerid = $containers.Item(0)
    $hostname = docker inspect -f '{{ .Config.Hostname}}' $lastcontainerid
    ##elevating PS if necessary
    if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File "$PSCommandPath"" -Verb RunAs; exit }
    ##Remove existing line
    Set-Content -Path "$env:windir\System32\Drivers\etc\hosts" -Value (get-content -Path "$env:windir\System32\Drivers\etc\hosts" | Select-String -Pattern $hostname -NotMatch)
    ##add ip:host mapping to host file
    $ipadd = docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $hostname
    Add-Content -Value "${ipadd} $hostname" -Path "$env:windir\System32\Drivers\etc\hosts"   
}

function Set-ContainerBCUserState {
    [cmdletbinding()]
    param (
        [string] $containerName,
        [pscredential] $Credential,
        [string] $bcUserState = "",
        [string] $explicitUser
    )   

    Invoke-ScriptInNavContainer -containerName $containerName -ScriptBlock { 
        param (
            [string] $containerName,
            [pscredential] $Credential,
            [int] $bcUserState = 1,
            [string] $explicitUser
        )

            $customConfigFile = Join-Path (Get-Item "C:\Program Files\Microsoft Dynamics NAV\*\Service").FullName "CustomSettings.config"
            [xml]$customConfig = [System.IO.File]::ReadAllText($customConfigFile)
            $databaseServer = $customConfig.SelectSingleNode("//appSettings/add[@key='DatabaseServer']").Value
            $databaseName = $customConfig.SelectSingleNode("//appSettings/add[@key='DatabaseName']").Value

            Write-Host "databaseServer: $($databaseServer)"
            Write-Host "databaseName: $($databaseName)"

            $SQLQuery = "UPDATE [dbo].[User] SET [State] = $($bcUserState)"
            if (![string]::IsNullOrEmpty($explicitUser)) {
                Write-Host "for user $($explicitUser)"
                $SQLQuery = "$($SQLQuery) WHERE [User Name] = '$($explicitUser)'" 
            }
            Write-Host "SQLQuery: $($SQLQuery)"

            Invoke-Sqlcmd -ServerInstance $databaseServer -Database $databaseName -Query $SQLQuery
            write-Host 'user deactivated!'
    }-ArgumentList $containerName, $Credential, $bcUserState, $explicitUser

}

##elevating PS if necessary
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File "$PSCommandPath"" -Verb RunAs; exit }

$Credential = New-BCCredential -ContainerAuth $auth -ContainerUserName $UserName -ContainerPlainPassword $Password

write-host "Get artifact URL for '$($customerBCCountry)', '$($customerBCversion)'"
$ArtifactURL = Get-BCArtifactUrl -country $customerBCCountry -type OnPrem -select Latest -version $customerBCVersion
write-host "ArtifactURL: '$($ArtifactURL)'"

New-NavContainer -containerName $ContainerName `
    -imageName $imageName `
    -licenseFile $licenseFile `
    -auth $auth `
    -Credential $Credential `
    -accept_eula `
    -accept_outdated `
    -artifactUrl $ArtifactURL `
    -bakFile $bakFile `
    -additionalParameters '--net="pub"' `
    -ErrorAction SilentlyContinue

Write-Host "update hosts with kaspersky explicitly..."
Update-HostFile;

write-host -ForegroundColor Red '-----------------------------------------------------'
write-host -ForegroundColor Red 'Container is ready but Business Central is not!'
write-host -ForegroundColor Red '-----------------------------------------------------'

Write-Host "deactivate existing user..."
Set-ContainerBCUserState -containerName $containerName -Credential $Credential -bcUserState 1

write-host 'create new user...'
New-NavContainerNavUser -containerName $containerName -Credential $Credential -PermissionSetId "SUPER" -databaseCredential $Credential -Verbose -ChangePasswordAtNextLogOn $false -ErrorAction SilentlyContinue

write-host 'activate new user...'
Set-ContainerBCUserState -containerName $containerName -Credential $Credential -bcUserState 0 -explicitUser $UserName

write-host 'restart container...'
Restart-NavContainer $containerName

Write-Host "update hosts with kaspersky explicitly..."
Update-HostFile;

write-host 'Import TestToolkitToNavContainer...'
Import-TestToolkitToNavContainer -containerName $containerName

Full output of scripts

Get artifact URL for 'de', '16.0'
ArtifactURL: 'https://bcartifacts.azureedge.net/onprem/16.0.11240.12085/de'
NavContainerHelper is version 0.7.0.20
NavContainerHelper is running as administrator
Host is Microsoft Windows 10 Pro - 1909
Docker Client Version is 19.03.12
Docker Server Version is 19.03.12
Fetching all docker images
Using image mcr.microsoft.com/dynamicsnav:10.0.18363.959-generic
Creating Container DataToContainer
Version: 16.0.11240.12085-de
Style: onprem
Platform: 16.0.11233.12078
Generic Tag: 0.1.0.13
Container OS Version: 10.0.18363.959 (1909)
Host OS Version: 10.0.18363.959 (1909)
Using locale de-DE
Using process isolation
Disabling the standard eventlog dump to container log every 2 seconds (use -dumpEventLog to enable)
Using license file C:\ProgramData\NavContainerHelper\mybak\myLicense.flf
Additional Parameters:
--net="pub"
Files in C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\my:
- AdditionalOutput.ps1
- license.flf
- MainLoop.ps1
- SetupVariables.ps1
- updatehosts.ps1
Creating container DataToContainer from image mcr.microsoft.com/dynamicsnav:10.0.18363.959-generic
a4dee7786f8e182dc97b4d50262d7abd2ab1928926931d50a8098710fdec9086
Waiting for container DataToContainer to be ready
Using artifactUrl https://bcartifacts.azureedge.net/onprem/16.0.11240.12085/de
Using installer from C:\Run\150-new
Installing Business Central
Installing from artifacts
Starting Local SQL Server
Starting Internet Information Server
Copying Service Tier Files
Copying PowerShell Scripts
Copying dependencies
Copying ReportBuilder
Importing PowerShell Modules
Skipping restore of Cronus database
Modifying Business Central Service Tier Config File for Docker
Creating Business Central Service Tier
Installing SIP crypto provider: 'C:\Windows\System32\NavSip.dll'
Copying Web Client Files
Copying Client Files
Copying ModernDev Files
Copying additional files
Copying ConfigurationPackages
Copying Test Assemblies
Copying Applications
Installation took 38 seconds
Installation complete
Initializing...
Starting Container
Hostname is DataToContainer
PublicDnsName is DataToContainer
WARNING: DNS resolution not working from within the container.
Using NavUserPassword Authentication
Using Database .bak file 'C:\ProgramData\NavContainerHelper\mybak\customerDatabaseBAK2.bak'
Using database server localhost\SQLEXPRESS
Creating Self Signed Certificate
Self Signed Certificate Thumbprint 2C1BF357797E60E358DC7B7774E898274AB5F885
Modifying Service Tier Config File with Instance Specific Settings
Starting Service Tier
Registering event sources
Creating DotNetCore Web Server Instance
Using license file 'c:\run\my\license.flf'
Import License
Creating http download site
Setting SA Password and enabling SA
Creating Admin as SQL User and add to sysadmin
Creating SUPER user
WARNING: The password that you entered does not meet the minimum requirements.
It should be at least 8 characters long and contain at least one uppercase
letter, one lowercase letter, and one number.
Container IP Address: 169.254.190.89
Container Hostname  : DataToContainer
Container Dns Name  : DataToContainer
Web Client          : http://DataToContainer/BC/
Dev. Server         : http://DataToContainer
Dev. ServerInstance : BC

Files:
http://DataToContainer:8080/ALLanguage.vsix

Initialization took 260 seconds
Ready for connections!
Reading CustomSettings.config from DataToContainer
Creating Desktop Shortcuts for DataToContainer
Container DataToContainer successfully created
update hosts with kaspersky explicitly...
-----------------------------------------------------
Container is ready but Business Central is not!                                                                                                                                                                                             -----------------------------------------------------                                                                                                                                                                                       deactivate existing user...                                                                                                                                                                                                                 databaseServer: localhost                                                                                                                                                                                                                   databaseName: mydatabase                                                                                                                                                                                                                    SQLQuery: UPDATE [dbo].[User] SET [State] = 1                                                                                                                                                                                               user deactivated!                                                                                                                                                                                                                           create new user...                                                                                                                                                                                                                          Creating User Admin                                                                                                                                                                                                                         WARNUNG: The password that you entered does not meet the minimum requirements. It should be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, and one number.                                     activate new user...                                                                                                                                                                                                                        databaseServer: localhost                                                                                                                                                                                                                   databaseName: mydatabase                                                                                                                                                                                                                    for user Admin                                                                                                                                                                                                                              SQLQuery: UPDATE [dbo].[User] SET [State] = 0 WHERE [User Name] = 'Admin'                                                                                                                                                                   user deactivated!                                                                                                                                                                                                                           restart container...                                                                                                                                                                                                                        DataToContainer                                                                                                                                                                                                                             Waiting for container DataToContainer to be ready                                                                                                                                                                                                                                                                                                                                                                                                                                       Initializing...                                                                                                                                                                                                                             Restarting Container                                                                                                                                                                                                                        PublicDnsName unchanged                                                                                                                                                                                                                     Hostname is DataToContainer                                                                                                                                                                                                                 PublicDnsName is DataToContainer                                                                                                                                                                                                            Using NavUserPassword Authentication                                                                                                                                                                                                        Starting Local SQL Server                                                                                                                                                                                                                   Starting Internet Information Server                                                                                                                                                                                                        Starting Service Tier                                                                                                                                                                                                                       Container IP Address: 169.254.247.107                                                                                                                                                                                                       Container Hostname  : DataToContainer
Container Dns Name  : DataToContainer
Web Client          : http://DataToContainer/BC/
Dev. Server         : http://DataToContainer
Dev. ServerInstance : BC

Files:
http://DataToContainer:8080/ALLanguage.vsix

Initialization took 30 seconds
Ready for connections!
update hosts with kaspersky explicitly...
Import TestToolkitToNavContainer...
Copy from container DataToContainer (C:\ProgramData\NavContainerHelper\Extensions\onprem-Applications-16.0.11240.12085-de\Microsoft_Any.runtime.app) to C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_Any.runtime.app
Publishing C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_Any.runtime.app
Synchronizing Any on tenant default
Installing Any on tenant default
App successfully published
Copy from container DataToContainer (C:\ProgramData\NavContainerHelper\Extensions\onprem-Applications-16.0.11240.12085-de\Microsoft_Library Assert.runtime.app) to C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_Library Assert.runtime.app
Publishing C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_Library Assert.runtime.app
Synchronizing Library Assert on tenant default
Installing Library Assert on tenant default
App successfully published
Copy from container DataToContainer (C:\Applications\TestFramework\TestRunner\Microsoft_Test Runner.app) to C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_Test Runner.app
Publishing C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_Test Runner.app
Synchronizing Test Runner on tenant default
Installing Test Runner on tenant default
App successfully published
Copy from container DataToContainer (C:\Applications\system application\test\Microsoft_System Application Test Library.app) to C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_System Application Test Library.app
Publishing C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_System Application Test Library.app
Synchronizing System Application Test Library on tenant default
Installing System Application Test Library on tenant default
App successfully published
Copy from container DataToContainer (C:\Applications\BaseApp\Test\Microsoft_Tests-TestLibraries.app) to C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_Tests-TestLibraries.app
Publishing C:\ProgramData\NavContainerHelper\Extensions\DataToContainer\_Microsoft_Tests-TestLibraries.app
Extension compilation failed
LibraryERM.Codeunit.al(958,71): warning AL0432: Table 'Sales Line Discount' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryERM.Codeunit.al(975,72): warning AL0432: Table 'Purchase Line Discount' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryMarketing.Codeunit.al(487,69): warning AL0432: Table 'Sales Line Discount' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryMarketing.Codeunit.al(497,66): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryInventory.Codeunit.al(374,59): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibraryInventory.Codeunit.al(731,30): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibrarySales.Codeunit.al(494,55): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibrarySales.Codeunit.al(1281,68): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
TestPriceCalculationSwitch.Codeunit.al(29,54): warning AL0432: Codeunit 'Price Calculation - V15' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
ERMVATToolHelper.Codeunit.al(710,30): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
ERMVATToolHelper.Codeunit.al(956,30): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibraryCosting.Codeunit.al(350,61): warning AL0432: Table 'Purchase Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(393,55): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(407,64): warning AL0432: Table 'Sales Price Worksheet' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(409,38): warning AL0432: Report 'Implement Price Change' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(538,28): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(539,41): warning AL0432: Report 'Suggest Sales Price on Wksh.' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(552,40): warning AL0432: Report 'Suggest Item Price on Wksh.' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(566,40): warning AL0432: Report 'Suggest Item Price on Wksh.' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCRMIntegration.Codeunit.al(140,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(150,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(161,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(177,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(214,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(231,129): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCRMIntegration.Codeunit.al(294,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(311,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(334,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(354,117): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(370,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(380,114): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(396,152): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(513,81): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(950,117): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(1190,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(1624,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(1677,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(1692,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryJob.Codeunit.al(257,69): warning AL0432: Table 'Job G/L Account Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryJob.Codeunit.al(267,59): warning AL0432: Table 'Job Item Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryJob.Codeunit.al(279,67): warning AL0432: Table 'Job Resource Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryGraphDocumentTools.Codeunit.al(728,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphMgt.Codeunit.al(637,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(251,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(261,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(270,77): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(326,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(347,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(421,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryResource.Codeunit.al(85,61): warning AL0432: Table 'Resource Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LicenseManagementStarter.Codeunit.al(20,30): warning AL0432: Table 'Resource Cost' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LicenseManagementStarter.Codeunit.al(64,34): warning AL0432: Table 'Job Resource Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LicenseManagementStarter.Codeunit.al(65,30): warning AL0432: Table 'Job Item Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LicenseManagementStarter.Codeunit.al(66,35): warning AL0432: Table 'Job G/L Account Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryTimeSheet.Codeunit.al(199,57): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTimeSheet.Codeunit.al(218,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryMarketing.Codeunit.al(265,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryMarketing.Codeunit.al(303,48): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Interaction Log Entry Document Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTimeSheet.Codeunit.al(390,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTimeSheet.Codeunit.al(391,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTimeSheet.Codeunit.al(425,70): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(84,27): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Cash Flow Source Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(95,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(106,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(117,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(198,12): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(431,12): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(455,27): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Cash Flow Source Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(456,26): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(485,30): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Cash Flow Source Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(221,32): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(232,32): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(236,32): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(247,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(249,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(254,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(79,23): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibraryTrees.Codeunit.al(336,89): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(338,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(352,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(353,86): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(783,72): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(449,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(487,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(519,65): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(567,79): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(575,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(735,23): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
ERMVATToolHelper.Codeunit.al(850,91): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(857,94): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
AssisCompSetupPlatTests.Codeunit.al(135,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
AssisCompSetupPlatTests.Codeunit.al(136,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(864,93): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(897,23): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
ERMVATToolHelper.Codeunit.al(978,23): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
TestVATResponse.Codeunit.al(7,27): error AL0132: 'Status' does not contain a definition for 'Accepted'
TestVATSubmission.Codeunit.al(9,9): error AL0118: The name '"Message Id"' does not exist in the current context
ERMVATToolHelper.Codeunit.al(1122,64): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(1123,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
TestVATValidate.Codeunit.al(10,46): error AL0118: The name '"Additional Information"' does not exist in the current context
ERMVATToolHelper.Codeunit.al(1560,78): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(1572,75): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(1584,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
GenerateTestDataMgt.Codeunit.al(173,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
GenerateTestDataMgt.Codeunit.al(216,45): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(46,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(63,38): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(80,38): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(97,38): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryApplicationArea.Codeunit.al(626,39): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryPatterns.Codeunit.al(114,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphJournalLines.Codeunit.al(189,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphJournalLines.Codeunit.al(193,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(131,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(148,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(162,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(225,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(233,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryDocumentApprovals.Codeunit.al(21,32): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Approval Document Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(276,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryApplicationArea.Codeunit.al(830,40): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryApplicationArea.Codeunit.al(839,40): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryPatterns.Codeunit.al(300,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryApplicationArea.Codeunit.al(849,40): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryApplicationArea.Codeunit.al(858,40): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryPatterns.Codeunit.al(363,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(373,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(380,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(387,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(394,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(400,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(407,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(466,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(475,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(480,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(486,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(492,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(498,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(505,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlow.Codeunit.al(150,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlow.Codeunit.al(150,52): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlow.Codeunit.al(151,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(573,29): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(591,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(604,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(102,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(645,29): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(662,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(677,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(689,29): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(738,69): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(749,29): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(204,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(205,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(207,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(208,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(225,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(226,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(228,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(229,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(280,47): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(296,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(307,47): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(323,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(678,64): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(680,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(630,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(631,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(632,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(634,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(635,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(640,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(641,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(642,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(644,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(645,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(173,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(174,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(177,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(178,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(390,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(415,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(434,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(768,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(789,57): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(449,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(474,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(492,32): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(498,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(514,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1113,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1114,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(536,70): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(893,34): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(898,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(905,64): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(914,38): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(925,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(953,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(955,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1200,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1204,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1219,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(473,44): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Deferral Calculation Method"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(474,42): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Deferral Calculation Start Date"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1044,57): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(209,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(237,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryVATReport.Codeunit.al(13,97): error AL0132: '"VAT Report Config. Code"' does not contain a definition for 'VAT Return'
LibraryVATReport.Codeunit.al(19,97): error AL0132: '"VAT Report Config. Code"' does not contain a definition for 'VAT Return'
LibraryVATReport.Codeunit.al(20,34): error AL0118: The name '"Period Year"' does not exist in the current context
LibraryPatterns.Codeunit.al(1441,69): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(644,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1460,69): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(959,30): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Cash Flow Source Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(660,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1514,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(735,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(744,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1569,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(1132,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPaymentExport.Codeunit.al(191,48): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(967,19): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Discount Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPaymentExport.Codeunit.al(227,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPaymentExport.Codeunit.al(228,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPaymentFormat.Codeunit.al(14,69): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Data Exchange Definition Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(1109,39): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Tax Calculation Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryWarehouse.Codeunit.al(411,42): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Status"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryWarehouse.Codeunit.al(433,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Status"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1042,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1044,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1046,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1058,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1060,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1073,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1075,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1087,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1089,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1091,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1103,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1105,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJob.Codeunit.al(1107,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCostAccounting.Codeunit.al(440,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCostAccounting.Codeunit.al(441,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(385,109): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibraryInventory.Codeunit.al(416,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryJournals.Codeunit.al(103,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1663,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1664,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1703,45): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1723,83): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1780,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1784,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(591,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(592,54): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(1998,15): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPriceCalculation.Codeunit.al(21,31): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Price Calculation Handler"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(2325,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPriceCalculation.Codeunit.al(97,32): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Price Calculation Handler"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1326,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1332,54): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1339,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1340,54): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1345,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1346,54): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(162,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(165,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(168,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(173,20): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(198,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(200,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(214,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(215,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(224,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(225,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(223,65): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Prod. Order Source Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(234,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(235,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(244,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(245,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCosting.Codeunit.al(712,37): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryCosting.Codeunit.al(728,37): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(283,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
MIRHelperFunctions.Codeunit.al(166,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
MIRHelperFunctions.Codeunit.al(167,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(438,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(451,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(452,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(2947,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(711,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Capacity Unit of Measure"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(24,14): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(32,14): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(40,14): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(53,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(54,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(55,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(56,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(57,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(941,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryFinanceChargeMemo.Codeunit.al(24,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(216,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(217,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(295,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(296,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(330,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(480,68): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(488,70): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(491,72): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(499,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(515,47): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(519,51): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(530,50): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(370,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(373,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(376,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(567,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(418,40): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(421,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(429,40): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(432,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(616,45): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(440,40): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.                                                                                                                                                                                                LibrarySales.Codeunit.al(443,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.                                                                                                                                                                                                    LibrarySales.Codeunit.al(451,40): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.                                                                                                                                                                                                LibrarySales.Codeunit.al(454,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.                                                                                                                                                                                                    LibraryGraphDocumentTools.Codeunit.al(663,87): warning AL0432: Field 'Id' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.                                                              LibraryGraphDocumentTools.Codeunit.al(669,95): warning AL0432: Field 'Id' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.                                                              LibraryGraphDocumentTools.Codeunit.al(699,87): warning AL0432: Field 'Id' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.                                                              LibraryGraphDocumentTools.Codeunit.al(705,95): warning AL0432: Field 'Id' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.                                                              LibrarySales.Codeunit.al(588,31): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Extended Text Table Name"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(1121,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryService.Codeunit.al(362,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryService.Codeunit.al(473,20): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryService.Codeunit.al(487,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibraryService.Codeunit.al(490,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(46,45): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Sales Comment Document Type"'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(188,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(193,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(201,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(204,66): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(209,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(214,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(222,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(227,56): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(235,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(240,56): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(414,28): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning will become an error in a future release.
at <ScriptBlock>, <No file>: line 12
Extension compilation failed
LibraryERM.Codeunit.al(958,71): warning AL0432: Table 'Sales Line Discount' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryERM.Codeunit.al(975,72): warning AL0432: Table 'Purchase Line Discount' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryMarketing.Codeunit.al(487,69): warning AL0432: Table 'Sales Line Discount' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryMarketing.Codeunit.al(497,66): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryInventory.Codeunit.al(374,59): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibraryInventory.Codeunit.al(731,30): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibrarySales.Codeunit.al(494,55): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibrarySales.Codeunit.al(1281,68): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
TestPriceCalculationSwitch.Codeunit.al(29,54): warning AL0432: Codeunit 'Price Calculation - V15' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
ERMVATToolHelper.Codeunit.al(710,30): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
ERMVATToolHelper.Codeunit.al(956,30): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibraryCosting.Codeunit.al(350,61): warning AL0432: Table 'Purchase Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(393,55): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(407,64): warning AL0432: Table 'Sales Price Worksheet' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(409,38): warning AL0432: Report 'Implement Price Change' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(538,28): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(539,41): warning AL0432: Report 'Suggest Sales Price on Wksh.' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(552,40): warning AL0432: Report 'Suggest Item Price on Wksh.' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCosting.Codeunit.al(566,40): warning AL0432: Report 'Suggest Item Price on Wksh.' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCRMIntegration.Codeunit.al(140,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(150,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(161,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(177,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(214,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(231,129): warning AL0432: Table 'Sales Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryCRMIntegration.Codeunit.al(294,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(311,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(334,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(354,117): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(370,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(380,114): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(396,152): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(513,81): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(950,117): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(1190,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(1624,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(1677,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryCRMIntegration.Codeunit.al(1692,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryJob.Codeunit.al(257,69): warning AL0432: Table 'Job G/L Account Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryJob.Codeunit.al(267,59): warning AL0432: Table 'Job Item Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryJob.Codeunit.al(279,67): warning AL0432: Table 'Job Resource Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryGraphDocumentTools.Codeunit.al(728,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphMgt.Codeunit.al(637,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(251,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(261,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(270,77): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(326,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(347,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphSync.Codeunit.al(421,35): warning AL0432: Table 'Integration Record' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryResource.Codeunit.al(85,61): warning AL0432: Table 'Resource Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LicenseManagementStarter.Codeunit.al(20,30): warning AL0432: Table 'Resource Cost' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LicenseManagementStarter.Codeunit.al(64,34): warning AL0432: Table 'Job Resource Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LicenseManagementStarter.Codeunit.al(65,30): warning AL0432: Table 'Job Item Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LicenseManagementStarter.Codeunit.al(66,35): warning AL0432: Table 'Job G/L Account Price' is marked for removal. Reason: Replaced by the new implementation (V16) of price calculation.. Tag: 16.0.
LibraryTimeSheet.Codeunit.al(199,57): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryTimeSheet.Codeunit.al(218,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryMarketing.Codeunit.al(265,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryMarketing.Codeunit.al(303,48): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Interaction Log Entry Document Type"'. This conversion can lead to unexpected
runtime issues. This warning will become an error in a future release.
LibraryTimeSheet.Codeunit.al(390,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryTimeSheet.Codeunit.al(391,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryTimeSheet.Codeunit.al(425,70): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(84,27): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Cash Flow Source Type"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(95,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(106,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(117,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(198,12): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(431,12): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(455,27): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Cash Flow Source Type"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(456,26): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMCashFlowChartAdapter.Codeunit.al(485,30): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Cash Flow Source Type"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryTrees.Codeunit.al(221,32): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryTrees.Codeunit.al(232,32): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryTrees.Codeunit.al(236,32): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryTrees.Codeunit.al(247,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryTrees.Codeunit.al(249,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryTrees.Codeunit.al(254,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(79,23): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibraryTrees.Codeunit.al(336,89): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryTrees.Codeunit.al(338,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryTrees.Codeunit.al(352,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryTrees.Codeunit.al(353,86): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryTrees.Codeunit.al(783,72): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(449,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(487,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(519,65): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(567,79): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(575,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(735,23): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
ERMVATToolHelper.Codeunit.al(850,91): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(857,94): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
AssisCompSetupPlatTests.Codeunit.al(135,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
AssisCompSetupPlatTests.Codeunit.al(136,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(864,93): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(897,23): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
ERMVATToolHelper.Codeunit.al(978,23): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
TestVATResponse.Codeunit.al(7,27): error AL0132: 'Status' does not contain a definition for 'Accepted'
TestVATSubmission.Codeunit.al(9,9): error AL0118: The name '"Message Id"' does not exist in the current context
ERMVATToolHelper.Codeunit.al(1122,64): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(1123,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
TestVATValidate.Codeunit.al(10,46): error AL0118: The name '"Additional Information"' does not exist in the current context
ERMVATToolHelper.Codeunit.al(1560,78): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(1572,75): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
ERMVATToolHelper.Codeunit.al(1584,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
GenerateTestDataMgt.Codeunit.al(173,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
GenerateTestDataMgt.Codeunit.al(216,45): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(46,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(63,38): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(80,38): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(97,38): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryApplicationArea.Codeunit.al(626,39): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryPatterns.Codeunit.al(114,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryGraphJournalLines.Codeunit.al(189,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryGraphJournalLines.Codeunit.al(193,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(131,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(148,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(162,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(225,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(233,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryDocumentApprovals.Codeunit.al(21,32): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Approval Document Type"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(276,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryApplicationArea.Codeunit.al(830,40): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryApplicationArea.Codeunit.al(839,40): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryPatterns.Codeunit.al(300,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryApplicationArea.Codeunit.al(849,40): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryApplicationArea.Codeunit.al(858,40): warning AL0432: Field 'Invoicing' is marked for removal. Reason: Microsoft Invoicing is not supported on Business Central. Tag: 15.0.
LibraryPatterns.Codeunit.al(363,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(373,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(380,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(387,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(394,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(400,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(407,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(466,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(475,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(480,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(486,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(492,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(498,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(505,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryCashFlow.Codeunit.al(150,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlow.Codeunit.al(150,52): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryCashFlow.Codeunit.al(151,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(573,29): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(591,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(604,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(102,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(645,29): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(662,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(677,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(689,29): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(738,69): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(749,29): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(204,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(205,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(207,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(208,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(225,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(226,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(228,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(229,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(280,47): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(296,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(307,47): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(323,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(678,64): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryAssembly.Codeunit.al(680,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(630,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(631,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(632,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(634,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(635,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(640,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(641,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(642,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(644,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryItemTracking.Codeunit.al(645,23): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(173,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryERM.Codeunit.al(174,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryERM.Codeunit.al(177,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryERM.Codeunit.al(178,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(390,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(415,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(434,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(768,35): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(789,57): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(449,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(474,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(492,32): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(498,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(514,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1113,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1114,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(536,70): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(893,34): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(898,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryAssembly.Codeunit.al(905,64): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryAssembly.Codeunit.al(914,38): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(925,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryAssembly.Codeunit.al(953,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(955,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1200,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1204,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1219,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryERM.Codeunit.al(473,44): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Deferral Calculation Method"'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryERM.Codeunit.al(474,42): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Deferral Calculation Start Date"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1044,57): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryJob.Codeunit.al(209,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(237,59): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryVATReport.Codeunit.al(13,97): error AL0132: '"VAT Report Config. Code"' does not contain a definition for 'VAT Return'
LibraryVATReport.Codeunit.al(19,97): error AL0132: '"VAT Report Config. Code"' does not contain a definition for 'VAT Return'
LibraryVATReport.Codeunit.al(20,34): error AL0118: The name '"Period Year"' does not exist in the current context
LibraryPatterns.Codeunit.al(1441,69): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(644,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1460,69): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(959,30): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Cash Flow Source Type"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(660,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1514,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(735,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryERM.Codeunit.al(744,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPatterns.Codeunit.al(1569,73): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCashFlowHelper.Codeunit.al(1132,25): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Cash Flow Source Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPaymentExport.Codeunit.al(191,48): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(967,19): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Discount Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPaymentExport.Codeunit.al(227,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPaymentExport.Codeunit.al(228,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPaymentFormat.Codeunit.al(14,69): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Data Exchange Definition Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(1109,39): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Tax Calculation Type"'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryWarehouse.Codeunit.al(411,42): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Status"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryWarehouse.Codeunit.al(433,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Status"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryJob.Codeunit.al(1042,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1044,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1046,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1058,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1060,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1073,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1075,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1087,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibraryJob.Codeunit.al(1089,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibraryJob.Codeunit.al(1091,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibraryJob.Codeunit.al(1103,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1105,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryJob.Codeunit.al(1107,22): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryCostAccounting.Codeunit.al(440,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryCostAccounting.Codeunit.al(441,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(385,109): warning AL0432: Table 'Item Template' is marked for removal. Reason: This functionality will be replaced by other templates.. Tag: 16.0.
LibraryInventory.Codeunit.al(416,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryJournals.Codeunit.al(103,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1663,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1664,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1703,45): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1723,83): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Replenishment System"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1780,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryAssembly.Codeunit.al(1784,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(591,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(592,54): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(1998,15): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPriceCalculation.Codeunit.al(21,31): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Price Calculation Handler"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(2325,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPriceCalculation.Codeunit.al(97,32): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Price Calculation Handler"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1326,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1332,54): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1339,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1340,54): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1345,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryInventory.Codeunit.al(1346,54): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Item Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(162,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPurchase.Codeunit.al(165,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPurchase.Codeunit.al(168,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPurchase.Codeunit.al(173,20): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPurchase.Codeunit.al(198,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(200,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPurchase.Codeunit.al(214,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(215,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPurchase.Codeunit.al(224,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(225,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(223,65): warning AL0603: An implicit conversion is being performed from a value of type 'Option' to a value of type 'Enum "Prod. Order Source Type"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(234,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(235,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPurchase.Codeunit.al(244,43): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(245,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryCosting.Codeunit.al(712,37): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryCosting.Codeunit.al(728,37): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryPurchase.Codeunit.al(283,58): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
MIRHelperFunctions.Codeunit.al(166,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
MIRHelperFunctions.Codeunit.al(167,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(438,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(451,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(452,77): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Production BOM Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERM.Codeunit.al(2947,46): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryManufacturing.Codeunit.al(711,60): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Capacity Unit of Measure"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(24,14): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(32,14): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(40,14): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Integer'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(53,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(54,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(55,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(56,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryERMCountryData.Codeunit.al(57,41): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Report Selection Usage"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryPurchase.Codeunit.al(941,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryFinanceChargeMemo.Codeunit.al(24,61): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected
runtime issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(216,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(217,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySales.Codeunit.al(295,90): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySales.Codeunit.al(296,11): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Account Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySales.Codeunit.al(330,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(480,68): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(488,70): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(491,72): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(499,71): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(515,47): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(519,51): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(530,50): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(370,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibrarySales.Codeunit.al(373,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibrarySales.Codeunit.al(376,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(567,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySales.Codeunit.al(418,40): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibrarySales.Codeunit.al(421,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibrarySales.Codeunit.al(429,40): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibrarySales.Codeunit.al(432,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(616,45): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibrarySales.Codeunit.al(440,40): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibrarySales.Codeunit.al(443,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibrarySales.Codeunit.al(451,40): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibrarySales.Codeunit.al(454,49): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This warning
will become an error in a future release.
LibraryGraphDocumentTools.Codeunit.al(663,87): warning AL0432: Field 'Id' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphDocumentTools.Codeunit.al(669,95): warning AL0432: Field 'Id' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphDocumentTools.Codeunit.al(699,87): warning AL0432: Field 'Id' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibraryGraphDocumentTools.Codeunit.al(705,95): warning AL0432: Field 'Id' is marked for removal. Reason: This functionality will be replaced by the systemID field. Tag: 15.0.
LibrarySales.Codeunit.al(588,31): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Extended Text Table Name"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySales.Codeunit.al(1121,55): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Gen. Journal Template Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibraryService.Codeunit.al(362,39): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryService.Codeunit.al(473,20): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Integer'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryService.Codeunit.al(487,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibraryService.Codeunit.al(490,13): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Service Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(46,45): warning AL0603: An implicit conversion is being performed from a value of type 'Integer' to a value of type 'Enum "Sales Comment Document Type"'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(188,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(193,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(201,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(204,66): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(209,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(214,53): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(222,62): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Sales Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues. This
warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(227,56): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(235,74): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Line Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(240,56): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Purchase Document Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime
issues. This warning will become an error in a future release.
LibrarySmallBusiness.Codeunit.al(414,28): warning AL0603: An implicit conversion is being performed from a value of type 'Enum "Tax Calculation Type"' to a value of type 'Option'. This conversion can lead to unexpected runtime issues.
This warning will become an error in a future release.
In C:\Program Files\WindowsPowerShell\Modules\navcontainerhelper\0.7.0.20\ContainerHandling\Invoke-ScriptInNavContainer.ps1:39 Zeichen:13
+             Invoke-Command -Session $session -ScriptBlock $scriptbloc ...
+             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [Publish-NAVApp], InvalidOperationException
    + FullyQualifiedErrorId : MicrosoftDynamicsNavServer$BC/nav-systemapplication,Microsoft.Dynamics.Nav.Apps.Management.Cmdlets.PublishNavApp
    + PSComputerName        : a4dee7786f8e182dc97b4d50262d7abd2ab1928926931d50a8098710fdec9086

Additional context

freddydk commented 4 years ago

In your artifacts cache (C:\bcartifacts.cache\sandbox\16.0.11240.12085\de) do you have a folder called Applications.DE? Maybe the artifacts was downloaded with an old version - you could use Flush-ContainerHelperCache to clean them and retry

aptMattKoe commented 4 years ago

I tried to flush but the same error again. BTW its an OnPrem Version.

In the folder there are those Directories and Files: image

a little bit deeper i found this: image

Any other ideas or hints? :/

freddydk commented 4 years ago

ahhh - the onprem, missed that. There was a bug in 16.0 onprem - the DVD contains the wrong apps I think. I put in a fix for this in containerhelper - but maybe that fix doesn't get applied with artifacts - will check.

freddydk commented 4 years ago

If you modify c:\program files\windowspowershell\modules\navcontainerhelper...\new-navcontainer.ps1 - search for the first occurance of 16.0.11240.12076 and use this line instead:

if ("$version" -like "16.0.11240.*" -and $devCountry -ne "W1") {

Then it should work.

freddydk commented 4 years ago

Issue #925 is the same issue - the difference is, that the artifacts are 12085 instead of 12076 due to an infrastructure problem.

aptMattKoe commented 4 years ago

Only for the history: the manual update worked! thanks Freddy :)