Resolving Page 9626 New Page Patterns List Part Compilation Error
This article explains how to resolve the compilation error that you get for page 9626 New Page Patterns List Part when converting a Microsoft Dynamics NAV 2016 database to Microsoft Dynamics NAV 2018.
Page 9626 New Page Patterns List Part has been removed in Microsoft Dynamics NAV 2018. To resolve this error, you can update page 9626 New Page Patterns List Part with the code that follows:
- Copy the code to a text editor, and save it as a .txt file type.
- Use the Microsoft Dynamics NAV Development Environment to import and compile the file to the converted database.
Note
If the page 9626 New Page Patterns List Part object in your database includes custom code, then you might have to resolve conflicts with your custom code.
OBJECT Page 9626 New Page Patterns List Part
{
OBJECT-PROPERTIES
{
Date=;
Time=;
Version List=;
}
PROPERTIES
{
CaptionML=ENU=New Page Patterns List Part;
InsertAllowed=No;
DeleteAllowed=No;
ModifyAllowed=No;
DelayedInsert=No;
PageType=ListPart;
}
CONTROLS
{
{ 1 ; ;Container ;
Name=Containers;
CaptionML=ENU=Container;
ContainerType=ContentArea }
{ 2 ;1 ;Group ;
GroupType=Repeater }
{ 3 ;2 ;Field ;
ApplicationArea=#All;
SourceExpr="Display Name" }
{ 4 ;2 ;Field ;
ApplicationArea=#All;
SourceExpr=Description }
}
CODE
{
VAR
"Display Name"@1000 : Text;
Description@1001 : Text;
BEGIN
END.
}
}
See Also
Converting a Database
Resolving Compilation Errors When Converting a Dynamics NAV 2017 Database
How to: Import-Objects