Quantcast
Channel: Dynamics 365 Business Central/NAV User Group
Viewing all 11285 articles
Browse latest View live

Blog Post: RDLC Export to Excel: Some hints

$
0
0
When you build RDLC reports in Dynamics NAV, you can choose between 5 different output types, also known as rendering extensions: Preview (HTML-like, Soft Page-Break) Print (Hard Page-Break) PDF (Hard Page-Break) Word (Soft Page-Break) Excel (Soft Page-Break) Each rendering extension is independent and generated by its own engine, also known as the renderer. In the...

Forum Post: RE: NAV 2017 Extension

$
0
0
Hi Lynix, Yes, you can have reports and xmlports in NAV 2017 extensions. This was not supported in NAV 2016.

Forum Post: RE: NAV 2017 Extensions: reports and XMLports?

Blog Post: Doing a Physical Inventory Count with Warehousing in Dynamics NAV or Dynamics 365

$
0
0
Overview Here’s a quick video about doing a physical inventory count in Dynamics NAV (or Dynamics 365) when you have the Directed Pick and Put-away feature turned on. There are basically 5 steps: Go to the Whse. Phys. Invt. Journal Run the Calculate Inventory process Fill in the Qty. Physical field Register the journal Go to the Item Journal and run the Calculate Whse. Adjustment process to true up the Bin Content and the Item Ledger Note that this video assumes you do not have ADCS (wireless barcode scanner) setup to do physical count. Enjoy! Video

Blog Post: Dynamics NAV and Let's Encrypt certificate

$
0
0
Are you using HTTPS for your Dynamics NAV? Or are you using SSL for your OData/SOAP webservices? Do you want to have trusted certificate for free? If yes, you can use the Let's Encrypt to create one. There are many ways how to use it, but mostly it is done with some human intervention. One way is e.g. described here . What I am using is combination of tool named AutoACME from my MVP friend Michal Altair Valášek. This tool is able to do all around generating the certificate for your web. It is using feature called Centralized SSL Certificate, which allows to have one point with the certificates for your IIS servers. How to get started is described here . After all is configured and working, result is that in the folder we have certificate for our server. Second step is to take this certificate and use it for our NAV server. I am using this script to do it: $NAVInstance = 'NAV' $NAVAccount = 'NETWORK SERVICE' $CertPassword = 'MyCertPassword' $CertFile = 'C:\CertStore\PFX\mycertfilename.pfx' #Install-Module -Name 'Carbon' -AllowClobber import-module Carbon import-module 'C:\Program Files\Microsoft Dynamics NAV\90\Service\Microsoft.Dynamics.Nav.Management.dll' $cert = Install-Certificate -Path $CertFile -StoreLocation LocalMachine -StoreName My -Password (ConvertTo-SecureString -AsPlainText $CertPassword -Force) $thumbprint = $cert.Thumbprint #netsh http show sslcert netsh http delete ssl ipport=0.0.0.0:7047 netsh http delete ssl ipport=0.0.0.0:7048 netsh http add sslcert ipport=0.0.0.0:7047 certhash=$thumbprint appid=`{00112233-4455-6677-8899-aabbccddeeff`} netsh http add sslcert ipport=0.0.0.0:7048 certhash=$thumbprint appid=`{00112233-4455-6677-8899-aabbccddeeff`} Grant-Permission -Identity $NAVAccount -Permission FullControl -Path "cert:\LocalMachine\My\$thumbprint" Set-NAVServerConfiguration -KeyName 'ServicesCertificateThumbprint' -KeyValue $cert.Thumbprint -ServerInstance $NAVInstance -Force Set-NAVServerInstance -ServerInstance $NAVInstance -Restart -Force It is using PowerShell module Carbon to assign the permissions for the certificate. You can install it by powershell command "Install-Module -Name 'Carbon' -AllowClobber". What this script does is: Set the variables (change values to suite your situation or put them as parameters...) Import needed modules (Carbon and Dynamics NAV management) Install the certificate into local machine store Get the thumbprint of the certificate Remove old certificate for port 7047 and 7048 (put them as parameter if you want) Add the new certificate to port 7047 and 7048 Grant permissions to private key to account under which the NAV Server is running Set the ServiceCertificateThumbprint value in the Dynamics NAV Server configuration to the new thumbprint Restart the NAV Server After that you have new certificate up and running for your server. I know that this description is high level. My intention is not to give you full step by step how to do all, because you can be in different environment than I am, but rather show you all tools and alternative way you can use in your situation. Because I do not have yet automation for connecting the IIS to the Centralized SSL certificate e.g. for using it in docker, I m using this only in situations, when my IIS/NAV server is accessible from internet (live/emo environments not using docker), because Let's Encrypt server need to access the Web Site to do the verification. Part of the AutoACME initial config is to create URL Rewrite rule to send all requests for the verification to your local IIS server you select and there AutoACME will handle the verification process. It means you need to configure the URL Rewrite rule on web server which will handle the URL for your address you want to have on the certificate. This is basic thing and you need to thing about it before you will use the Let's Encrypt. E.g. if I will address all my NAV servers through name like xxxx.navertica.com, I need to have IIS server which will handle all possible *.navertica.com requests (and of course you need to have correctly set the DNS entries for these names) and set the URL Rewrite rule there. You need to be aware that the certificate have short expiration and you need to run the process again before the certificate expires. Of course, it is good to add condition to update the NAV certificate only when new one is generated ;-)

Forum Post: RE: stock valuation

$
0
0
This is the Standard Navision Inventory report. If you are not getting the correct numbers from that report it means that your system was implemented incorrectly.

Blog Post: Creation of Reports using AL Extension in Microsoft Dynamcis NAV Development Preview

$
0
0
Nice post from CLOUDFRONTS about the creation of reports through AL Extensions “This blog demonstrates the creation of Reports through extensions in Microsoft Dynamics NAV Development Preview Environment (Microsoft Dynamics 365 for Financials and Operation, Business Edition).” Pre-requisites: Microsoft Dynamics NAV Development Preview Environment + Visual Studio Code with AL Extensions SOURCE: http://www.cloudfronts.com/creation-reports-using-al-extension-microsoft-dynamcis-nav-development-preview/

Forum Post: RE: How to use Xmlport without file selection

$
0
0
Go to XML Port Property. Choose "Format --> Xml".

Forum Post: RE: How to use Xmlport without file selection

$
0
0
the fiile is not xml, it s a csv file.

Forum Post: RE: How to use Xmlport without file selection

$
0
0
Go to XML Port Property. Choose "Format -->Variable Text".

Blog Post: Cumulative Update 14 for Microsoft Dynamics NAV 2017 has been released

$
0
0
Cumulative Update 14 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2017. The cumulative update is intended mainly for solutions that are experiencing the problems described in the Knowledge Base article linked to below. However, you are advised to always keep your solution updated with the latest cumulative update....

Blog Post: Cumulative Update 27 for Microsoft Dynamics NAV 2016 has been released

$
0
0
Cumulative Update 27 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2016. The cumulative update is intended mainly for solutions that are experiencing the problems described in the Knowledge Base article linked to below. However, you are advised to always keep your solution updated with the latest cumulative update....

Blog Post: Cumulative Update 39 for Microsoft Dynamics NAV 2015 has been released

$
0
0
Cumulative Update 39 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2015. The cumulative update is intended mainly for solutions that are experiencing the problems described in the Knowledge Base article linked to below. However, you are advised to always keep your solution updated with the latest cumulative update....

Blog Post: Cumulative Update 51 for Microsoft Dynamics NAV 2013 R2 has been released

$
0
0
Cumulative Update 51 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2013 R2. Cumulative Update 51 for Microsoft Dynamics NAV 2013 R2 will be the last release for Microsoft Dynamics NAV 2013 R2 as it by January 9, 2018 will be out of  mainstream support period. The...

Blog Post: Cumulative Update 58 for Microsoft Dynamics NAV 2013 has been released

$
0
0
Cumulative Update 58 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2013. Cumulative Update 58 for Microsoft Dynamics NAV 2013 will be the last release for Microsoft Dynamics NAV 2013 as it by January 9, 2018 will be out of  mainstream support period. The cumulative update is intended...

Blog Post: Microsoft Dynamics Partner Roundup: NAV manufacturing partnership; Supply chain for NAV 2018; ERP Connectors; Partner name change

$
0
0
In this week's Microsoft Dynamics Partner News Roundup: InterDyn Artis joins ever-growing roster of esteemed Insight Works authorized resellers Lanham Associates supply chain suite now available in Microsoft Dynamics NAV 2018 eBridge Connections re-affirms certified ERP connectors and their universal integration platform for EDI and API integrations Computer Support Services, Inc. announces name change and divestment of CoreIntegrator workflow software InterDyn ...read more

Forum Post: RE: stock valuation

$
0
0
we are not running any costing in the system i want to make a report for the same.

Forum Post: RE: stock valuation

$
0
0
If you are not running/using any item costing in the system, then your inventory valuation will not work. Sure you could create a new custom report show the "same", but good luck, not an easy task if it's supposed to be correct.

Forum Post: RE: Moving cursor to next record after scanning - NAV 2009 R2 Classic

$
0
0
Have you checked the settings on the scanner itself? If it's a keyboard wedge type, which it sounds like it is, you may have an option to automatically pass Carriage Return and/or Line Feed after each scan. If so and you turn that on it should automatically move to the next field in NAV after each scan. With a WASP scanner I had for instance the instruction book had a page of small barcodes printed in it to turn those functions on or off as well as configure the types of barcodes the scanner would be allowed to scan.

Forum Post: RE: Moving cursor to next record after scanning - NAV 2009 R2 Classic

$
0
0
Thanks Simpsoid, will have our customer try it out and will let you know. Thanks again for your quick response.
Viewing all 11285 articles
Browse latest View live