The steps of creating a Delta file
Let's generate the Delta file from our B & B application step by step. To do this, we must use the PowerShell commands that are installed when we install Dynamics NAV 2015. These are as follows:
- Creating a base version and folder structure: we need a folder on a drive with three subfolders. We will call the folder
BandB
. Here, we have aNAV2015
folder that contains the unchanged objects, aChanged
folder that contains the Bed and Breakfast objects, and aDelta
folder for the Delta files: - Exporting text files: We need to export the objects from Dynamics NAV as text files. This is something that can be done manually or via PowerShell. For reasons of simplicity, we will do it manually.
- Splitting the objects, and comparing and generating the Delta files: to compare the objects, we need to split the text file into one file per object, and then run the compare. We'll do this using PowerShell, as shown in the following screenshot:
Note
You can...