Skip to main content

Application Merge Utilities - How to Use - SPLIT & JOIN NAVApplicationObjectFile

Hi All,

This is Fourth Post in this series. If you would like to read earlier post please visit Index of Application Merge Utilities.

As Promised In This Post we will see about Next Two Commands Available in the the Module "Microsoft.Dynamics.Nav.Model.Tools".

1. Split-NAVApplicationObjectFile

2. Join-NAVApplicationObjectFile



Let's Load the Module again and see the Available Functions.
---------------------------------------------------------------------------
Import-Module "${env:ProgramFiles(x86)}\Microsoft Dynamics NAV\71\RoleTailored Client\Microsoft.Dynamics.Nav.Model.Tools.psd1" -force
Get-Help "NAV"
---------------------------------------------------------------------------

Export all objects in the database as Text File or any set that you want. My Exported File Name is Obj.txt.


1. Get-NAVApplicationObjectProperty == 

This cmdlet will Splits a text file that contains two or more application objects into separate text files for each application object.The Output of the Cmdlet will be Multiple Text Files Where each file will contain a application Object.

This Cmdlet have Following Input Parameter 

  •  Source - Name of the Source File Containing Multiple Navision Objects.
  •  Destination - Folder Path Where Output Files Should be Stored.
  •  PreserveFormatting - Specifies if you want to keep the structure of the application objects as in the source text file. (Would Suggest to Keep YES always)
  •  PassThru - Specifies if the cmdlet must return a FileInfo object for each text file that is created. (You Can keep it NO beacause its just display information)
  •  Force - Forces the cmdlet to overwrite any existing files in the Destination folder.
Below is the command that have been generated in Powershell. 

------------------------------------------------------------------------------
Split-NAVApplicationObjectFile -Source C:\Users\sdhyani6995\Desktop\Blog\Temp\Obj.txt -Destination C:\Users\sdhyani6995\Desktop\Blog\Temp\Target -Force -PassThru -PreserveFormatting
------------------------------------------------------------------------------

Below is the Cmdlet window.


Here is the output of the Cmdlet -



2. Join-NAVApplicationObjectFile == 

This cmdlet will Use the combine the application objects in the specified folder into a single text file. The Output of the Cmdlet will the Single Merged File for all the objects in a Folder.

This Cmdlet have following Parameters -


  • Destination - Path and Name of the Target File.
  • Source - Path and Name of the Source Folder.

Below is the command that have been generated in Powershell.
------------------------------------------------------------------------------
Join-NAVApplicationObjectFile -Destination C:\Users\sdhyani6995\Desktop\Blog\Temp\MergedObject.txt -Source C:\Users\sdhyani6995\Desktop\Blog\Temp\Target
------------------------------------------------------------------------------

Below is the Cmdlet windows of the Cmdlet.



Below is the Merged File.



Hope some of you will be find the article useful.

Stay Tuned for More..

Regards,
Saurav Dhyani
saurav-nav.blogspot.com

Comments

Popular posts from this blog

VIEW SERVER STATE permission on SQL Server?

Hi all, Sometime While trying to Login into a database we face an error message as shown below. --------------------------- Microsoft Dynamics NAV Classic --------------------------- You cannot start Microsoft Dynamics NAV Classic because you do not have the VIEW SERVER STATE permission on SQL Server. Contact your system administrator. --------------------------- OK    ---------------------------

BC 21 and Higher - PowerShell Cmdlet (Replacement of Business Central Administration).

Hi Readers, As discussed in last article about deprecating of Business Central Administration, there are few common actions that we use in administration till Business Central 20. For our on-prem customers, we will still require doing activities. As Microsoft suggest we need to start using PowerShell cmdlet.    Let's see how to do those via PowerShell, or Administration Shell. I will be keep adding commands as you comment to this article.

Send Mail with Attachment From Navision.

Hi all, We have seen how to save a report into PDF and how to send mail to a customer. Let's link these two post in one i.e. Mailing statement to a customer into PDF Format. This article is part of the Series. Please Refer  Table of Content here . If you have the old objects set let me brief you what I will be changing -