Showing posts with label Dynamics Nav. Show all posts
Showing posts with label Dynamics Nav. Show all posts

Thursday, 10 September 2015

Sync Account record with out clicking on Submit Button from CRM to Nav

Hi,

Today when I was working on synchronizing data from CRM to Nav using Dynamics Connector came to know that the user need to explicitly click on Submit button to start the sync.

But in our case, user do not want click on Submit button every time and it can be done very easily.

The Submit button updates Ready For Integration value to True. Just do the same using JavaScript and call it on Save of the record. That's it, your record will be automatically synchronized to Nav and user won't see Submit button.

function onSave() {
    Xrm.Page.getAttribute("dynamics_isreadyforintegration").setValue(true);
}

Hope this helps
--
Happy CRM'ing
Gopinath

Tuesday, 8 September 2015

You do not have permission to run the 'Design, Codeunit, Basic' System. Contact your system administrator to have our permissions changed.

Hi,

Today when I was try to open CodeUnit in the Nav Development Environment and got the below error.

The reason for it is I don't have Dev License Key.

Here is the way to upload you license key once you get it.

Open Nav Development Environment.
Go to Tools and License Information.
You will see button to Upload or Change the key.

Hope this helps.

--
Cheers
Gopinath

 

Tuesday, 1 September 2015

Steps for Installing Nav 2015

We got a requirement to install Nav 2015 and do some POC on it.

System Requirements
Windows Server 2012
SQL Server 2012

Here are the steps for installing

Double click the Setup.exe in the installation package.
Click Next button in the window of Dynamics NAV 2015 Installation.
Click “I Accept” button to proceed and we don't have any other option too :P
In the next screen, you have two options 
  1. Demo installation :  This is a standard installation type, which will install NAV 2015 Server, NAV 2015 Client, NAV 2015 development environment, MS Office Add-on for Dynamics NAV 2015, and a demonstration database with demonstration license
  2. If you choose B, you will prompted with a popup to choose custom settings.
If you have selected option B in Step 4 you will see the screen which will give you control to customize each feature installation, i.e. Client, Server, Developer
Select Custom option in the above screen.
Choose the following features and click Next button.

Client à Development EnvironmentAdministrative Tools
Server à Page Testability
SQL Server Database Components àDemo Database
Automated Data Capture System
Help Server
Click Once Installer Tool
 
In the next screen, you will asked some of the settings like Destination folder etc..
Don't forget choose SOAP Services Enabled to YES
By default, it will have NavDemo as a SQL Server instance. You can delete and give it as per your wish.
I ignored the warning by clicking the Next button, as I am doing for the POC. You can check the warning and do the needful.
You are done, the installation will start and shows the below screen.
After completing the installation, it will show the installation report of components that were installed.
Search for Microsoft Dynamics Nav 2015 and you will see the below screen.
Hope this helps.

--
Cheers
Gopinath