Skip to main content

Notifications

Announcements

No record found.

Business Central forum
Answered

Upgrade customized CAL BCv14 to BCv19 error on Sync NAVApp empty table migration extension with The input parameter OldName is not allowed to be null

Posted on by 60

Trying an upgrade from BC Cronus v14 CU18 with a 2 custom tables to BC v19.4 on premise,

using the following guide docs.microsoft.com/.../upgrade-to-microsoft-base-app-v19

On Task 14: Task 14: Synchronize final extensions

Sync-NAVApp -ServerInstance BC19CronusAllObj -Name "bc14baseapptablesonly" -Version 1.1.0.0

gives the error

Sync-NAVApp : Changes to the tenant database could not be applied. Affected tables will not be available.
The first error was:
Cannot delete the O365 Device Setup Instructions table from the Demo Test5 Database NAV (14-0) database because it contains data
for the company.
Retry the operation when the problem has been resolved.

when trying to force the sync

Sync-NAVApp -ServerInstance BC19CronusAllObj -Name "bc14baseapptablesonly" -Version 1.1.0.0 -Mode ForceSync -Force

gets the error :

Sync-NAVApp : The following SQL error occurred after the SQL command was canceled:
Either the parameter @objname is ambiguous or the claimed @objtype (OBJECT) is wrong.
Error: The input parameter 'OldName' is not allowed to be null.

  • Thanigaivelan S Profile Picture
    Thanigaivelan S 20 on at
    RE: Upgrade customized CAL BCv14 to BCv19 error on Sync NAVApp empty table migration extension with The input parameter OldName is not allowed to be null

    Hi Creppz,

    Did this solve your issue ? What should be updated in the app.json ?

    Thanks.

  • Creppz Profile Picture
    Creppz 5 on at
    RE: Upgrade customized CAL BCv14 to BCv19 error on Sync NAVApp empty table migration extension with The input parameter OldName is not allowed to be null

    Hi Jerome,

    Which property did you need to update in the app.json ?

    Thanks.

  • Verified answer
    Jerome Cader Profile Picture
    Jerome Cader 60 on at
    RE: Upgrade customized CAL BCv14 to BCv19 error on Sync NAVApp empty table migration extension with The input parameter OldName is not allowed to be null

    Issue resolved after updating the app.json for the upgrade extension.

  • Suggested answer
    Marco Mels Profile Picture
    Marco Mels on at
    RE: Upgrade customized CAL BCv14 to BCv19 error on Sync NAVApp empty table migration extension with The input parameter OldName is not allowed to be null

    Hello,

    Best probably is to raise this issue to Microsoft.

    Thank you.

  • Jerome Cader Profile Picture
    Jerome Cader 60 on at
    RE: Upgrade customized CAL BCv14 to BCv19 error on Sync NAVApp empty table migration extension with The input parameter OldName is not allowed to be null

    Statement: exec sp_rename N'"dbo"."Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13"', N'Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972', N'OBJECT'; IF (SELECT OBJECTPROPERTY(OBJECT_ID(N'dbo."Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$Key1"'), N'IsPrimaryKey'))=1

    EXEC sp_rename N'dbo."Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$Key1"', N'Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972$Key1', N'OBJECT';

    ELSE BEGIN

    DECLARE @KeyName sysname = (SELECT [name] from sys.indexes idx where idx.is_primary_key = 1 and idx.object_id = object_ID(N'Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972'));

    exec sp_rename @KeyName, N'Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972$Key1', 'OBJECT';

    END; IF OBJECT_ID(N'dbo.Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemId', 'UQ') IS NOT NULL BEGIN exec sp_rename N'"dbo"."Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemId"', N'Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972$$systemId', N'OBJECT' END

    IF OBJECT_ID(N'dbo.MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemId', 'D') IS NOT NULL BEGIN exec sp_rename N'"dbo"."MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemId"', N'MDF$Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972$$systemId', N'OBJECT' END

    IF OBJECT_ID(N'dbo.MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemCreatedAt', 'D') IS NOT NULL BEGIN exec sp_rename N'"dbo"."MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemCreatedAt"', N'MDF$Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972$$systemCreatedAt', N'OBJECT' END

    IF OBJECT_ID(N'dbo.MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemCreatedBy', 'D') IS NOT NULL BEGIN exec sp_rename N'"dbo"."MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemCreatedBy"', N'MDF$Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972$$systemCreatedBy', N'OBJECT' END

    IF OBJECT_ID(N'dbo.MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemModifiedAt', 'D') IS NOT NULL BEGIN exec sp_rename N'"dbo"."MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemModifiedAt"', N'MDF$Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972$$systemModifiedAt', N'OBJECT' END

    IF OBJECT_ID(N'dbo.MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemModifiedBy', 'D') IS NOT NULL BEGIN exec sp_rename N'"dbo"."MDF$Printer Selection$4bde5a55-7fec-4105-b8c8-d2c531b07c13$$systemModifiedBy"', N'MDF$Printer Selection$437dbf0e-84ff-417a-965d-ed2bb9650972$$systemModifiedBy', N'OBJECT' END

  • Jerome Cader Profile Picture
    Jerome Cader 60 on at
    RE: Upgrade customized CAL BCv14 to BCv19 error on Sync NAVApp empty table migration extension with The input parameter OldName is not allowed to be null

    Message App Sync Exception -- Microsoft.Dynamics.Nav.Types.Exceptions.NavSqlException: The following SQL error occurred after the SQL command was canceled:

    Either the parameter @objname is ambiguous or the claimed @objtype (OBJECT) is wrong.

    Error: The input parameter 'OldName' is not allowed to be null.

    ---> System.Data.SqlClient.SqlException: Either the parameter @objname is ambiguous or the claimed @objtype (OBJECT) is wrong.

    Error: The input parameter 'OldName' is not allowed to be null.

    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)

    at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)

Helpful resources

Quick Links

Replay now available! Dynamics 365 Community Call (CRM Edition)

Catch up on the first D365 Community Call held on 7/10

Community Spotlight of the Month

Kudos to Saurav Dhyani!

Congratulations to the June Top 10 community leaders!

These stars go above and beyond . . .

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 288,584 Super User

#2
Martin Dráb Profile Picture

Martin Dráb 225,864 Super User

#3
nmaenpaa Profile Picture

nmaenpaa 101,148

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans