Quantcast
Channel: Microsoft Dynamics NAV
Viewing all 65770 articles
Browse latest View live

Forum Post: How to tell if you instance has Advanced Warehousing turned on

$
0
0
I have only been at my current company a few months and I have been told all along that we do not have Advanced Warehousing included in our license. I think that is not correct. If I go into our test environment and start turning on directed Pick and Put-away, Require Receipts they work. Also the warehouse cannot go negative. I was always under the impression that those were some of the advanced warehouse functions. Please correct me if I am wrong, but it seems like it is working. Also Code unit 7302 WMS Management is present. Is there a way to tell in the license file if Advanced Warehousing is available or on? Thank you in advance for the help. Troy

Blog Post: Automated Builds – Part 8: Release Pipeline

$
0
0
The series I started from creating the container, then showed compiling and publishing the extensions (app files) and finished with executing automated tests. But all happened on the Docker container. Should we use it also for manual tests or production environment? Of course not. For that, the “normal” database is needed. Artifacts In some places of the series, I used the term artifacts . What are those? From the definition “ an artifact is a deployable component of your application” . What does this mean for Business Central? This is the file that is generated after the compilation of the code – the app file. How to publish the artifacts at the end of build pipeline I described here: http://www.mynavblog.com/2019/08/14/automated-builds-part-5-compile-and-publish-single-extension/ Release Pipeline When the build is finished and the app file (or multiple apps) is published as the artifact we can start releasing the extension to the database (or databases). For that, the Release Pipeline is needed. This time I do not have for you a working script. Why? Because each company database structure and extensions that are needed are different. Don’t worry – I will show how to create a simple release pipeline. The first step is to create a new release pipeline. Select an empty job. Here is the step where it is needed to add which artifacts (from which build) are taken to the release. Click on the artifacts and then set which build and project is the source for the release. For this example, I will build a simple release pipeline that will have one job and only one task – running a PowerShell script. But remember that the release pipeline can have many more jobs and tasks – all depends on the needs of the organization. The next step is to set up a Job. It is needed to set which agent pool and which agent will be used for release. It can be the same which is used for builds but it can be different (for example when our release database is on the different server than our Docker installation for builds). In the last step, it is needed to create a new task that will run the PowerShell script located on the server (path for the script need to be provided). And at least one argument is needed for the script with the folder where artifacts are stored. Example below: -buildArtifactFolder “$(System.DefaultWorkingDirectory)” The simplest example of the script you can find below. It go thru folder which was passed with the argument and then write the name of the app. In this place you should put your code which will publish the app to the database. Param( [Parameter(Mandatory=$true)] [string] $BuildArtifactFolder ) Get-ChildItem -Path $BuildArtifactFolder -Recurse -Include *.app | ForEach-Object { Write-Host “App Name: ” $_.Name } Summary This is the last article in the series but for sure not the last one about the Automated Builds which I will publish on blog. I hope you enjoyed the articles the same as I enjoyed sharing the knowledge about it. If you would like to discuss more this topic with me, I would like to invite you to Directions EMEA where I will handle workshops “ From Customer Request to Automated Release. How Azure DevOps and Docker can help you with daily work “.

Forum Post: Error 85132273 failed with code InternalServerError. Reason: An error has occurred.

$
0
0
When trying to publish my extension in VS Code I get the error " failed with code InternalServerError. Reason: An error has occurred". Then if I try to go into NAV 2018 and click "Install" on the extension, I get an Error Code: 85132273. Has anyone come across this before, or now how to get past it?

Blog Post: New book aims to help users get started with Microsoft Dynamics 365 Business Central

$
0
0
Microsoft MVP Erik Hougaard joined the MSDW podcast recently to discuss his newly published book, Microsoft Dynamics 365 Business Central Field Guide . Through his long history as a NAV and Business Central developer, Hougaard has years of blogging and speaking behind him, but this latest effort marks his first published book. Unlike his other efforts, which usually takes a very technical perspective, the Field Guide is intended for a wider audience of newcomers to Business Central. Preparing users for a cloud-first world Last Christmas, Hougaard was approached by a publisher to write a new Business Central development book. He worried that it wouldn't be differentiated or useful enough, so he set out on his own to guide new Business Central users who were navigating a "sign up and get going" world, one much different than the traditional experience of previous generations of ERP. Although Business Central is intuitive, it has many attributes that can be challenging for new users to figure out. Hougaard explained: .... Read More

Forum Post: Stock Valuation Variance -Positive/Negative Adjustment

$
0
0
Hi, Existing we've include an BOM setup for final products, kindly assists, what does it mean stock valuation variance for positive/negative adjustment. Thanks. Regards, ChenHaw

Forum Post: RE: NAV 2009 -> NAV 2018 with BREP

Forum Post: NAV 2009 BE -> AM, Additional Purchase

$
0
0
I have a client using NAV 2009 BE for a long time, now they want to have the manufacturing function. They want to have additional purchase to AM, is it possible? Or they need to upgrade to NAV2018 and purchase the manufacturing extension (They continously purchase the BREP)..

Forum Post: RE: Multiple photo uploading on MS Dynamics NAV

$
0
0
See if this helps https://community.dynamics.com/nav/f/microsoft-dynamics-nav-forum/268632/more-than-one-image-on-an-item

Forum Post: Value and gl entry difference

$
0
0
Client has posted a credit memo with charge items of price adjustment. There is a difference of 20$ in the one charge item . Gl entry and posted credit memo line shows 30$ for this but value entry showing 10$ . Why is this difference

Forum Post: ClickOnce is untrusted since .net 4.8 upgrade

$
0
0
Hi, I have some different clickonce installations to distribuate Navision clients. When the clients got the new dotnet 4.8, they all become Untrusted when installing. (ClickOnce is signed with an trusted certifikate). Does anyone know why?

Forum Post: How to open a sales quote when you have the sales quote number?

$
0
0
So i have a piece of code below: procedure OpenQuote (Quote Notification: Notification) var QuoteRec: Record "Sales Header"; QuotePage: Page "Sales Quote"; QuoteNo: Text ; QuoteCode: Code [ 20 ]; begin QuoteNo := Quote Notification . GetData ( 'QuoteNumber' ) ; Evaluate ( QuoteCode, QuoteNo ) ; if QuoteRec . Get ( QuoteCode ) then begin QuotePage . SetRecord ( QuoteRec ) ; QuotePage . Run () ; end ; end ; So my goal is to open the sales quote from the number that is extracted through the QuoteNotification.GetData function. Now note that when i message the QuoteCode it is the acctual correct code from the quote i want to open so having the wrong code is out of question. Now for opening the quote i have the following problem. Let's say i'm working in quote number 1005 and from there i want to open quote number 1001. When i perform the action it just reopens / refeshes (the page blinks) the quote i'm working in, in this case quote number 1005 and it doesn't open quote number 1001. Is there a solution to this problem?

Forum Post: RE: Error 85132273 failed with code InternalServerError. Reason: An error has occurred.

$
0
0
Thank you or the response, I checked and there are no duplicate objects. Our partner is saying that the system is locked and they cant identify the reason why. I think I may just have to wait to see what they say.

Forum Post: RE: How to open a sales quote when you have the sales quote number?

$
0
0
Hi Sales Header has Document Type and No. as the primary key. So you have to mention both when using Get method. So change the code accordingly. if QuoteRec.Get(QuoteRec."Document Type"::Quote, QuoteCode) then begin Regards Avinash B

Forum Post: RE: How to open a sales quote when you have the sales quote number?

$
0
0
You can also filter the record and use page.runmodal function. QuoteRec.SetRange("Document Type", QuoteRec."Document Type"::Quote); QuoteRec.SetRange("No.", QuoteCode); Page.RunModal(Page::"Sales Quote", QuoteRec);

Forum Post: RE: How to open a sales quote when you have the sales quote number?

$
0
0
Your problem is that the Sales Header has the primary key Document Type and No. and you are just trying to get the No. QuoteNo := QuoteNotification.GetData('QuoteNumber'); Evaluate(QuoteCode, QuoteNo); if QuoteRec.Get( QuoteRec."Document Type"::Quote ,QuoteCode) then begin QuotePage.SetRecord(QuoteRec); QuotePage.Run(); end;

Forum Post: NAV - CRM Integration create records in CRM automatically

$
0
0
NAV: 2018 CU1 - On Premis. CRM: Dynamics 365 In Cloud. Hi, I have the NAV - CRM integration setup and working, one thing I cant figure out is how to make records that are created in NAV be created automatically in CRM without the user needing to go through the coupling process, do I need to create some custom code for this or is this setup thing? another issue, I'm also working on mapping custom table in NAV to custom entity in CRM, I have gotten this to work but when syncing data from NAV to CRM I would want lines attached to my table (Sales Header/Sales Line like scenario) to synchronize but I cant figure out how to set it up so the lines are synced when the header is synced.

Blog Post: MSDYN365BC On-premise VS Cloud (SaaS) Battle Cards

$
0
0
MSDYN365BC On-premise VS Cloud (SaaS) Battle Cards Microsoft Dynamics 365 Business Central ( MSDYN365BC ) is a business management solution for small and medium-sized organizations Today Business Central is available in two versions : – On-Premise – Cloud (SaaS) LICENSING About “Team Member» License “BATTLE CARDS” – MSDYN365BC October 2019 Release2 (On-premise, Cloud SaaS) MSDYN365BC 2019 Release 2 will be released in October (1°) with a series of new Interesting feature s, I will post about them after the Product’s launch (First week of October). For now I have created this simple battle card between the two versions , On-premise and Cloud SaaS (we accept suggestions in the comments), already saying that the future is the Cloud SaaS… and so…    “ Move to SaaS!!!” BATTLE CARDS Feature MSDYN365BC On-premise MSDYN365BC Cloud (SaaS) Environment On Local, on Hosting (Azure) etc., ALL system is under control. You need Hardware or Hosting. NO Hardware. Cloud (SaaS) is on Microsoft Public Cloud. The environment is managed by Microsoft, you can only access a management console (Admin Console) to create copies and backups of the environment (development and production sandbox). File System ALL control, you are local. No File System, I do not have (to date) access to the system, I only have the request of Business Central. Product Lifecycle Limited by updates Unlimited, always updated Functionalities Essentials and Premium Essentials and Premium Connection\Internet FAST, run on local, persistent connection, no interne dependant. Internet dependant: If there is no connection or slow, you can’t work, a minimum of bandwidth is necessary. Installation Classic DVD distribution and Cumulative updated Nothing, ready-to go, only access to Business Central instance Updates No Automatic Update, installable manually or scheduled by custom procedure. Cumulative updates released and published. (a couple a month + a couple big a year) Automatic updates allow you to have a constantly updated Cloud product. (a couple a month + a couple big a year) Performance You need a IT Manager or Consultant Scalable, managed by Microsoft (with Support ticket…) Accessing Web Client, Universal App, Outlook Client, no more Windows Client Web Client, Universal App, Outlook Client SQL Server NO more SQL Server Runtime- Only SQL Standard or best version. Not available Database Local (Full Access) Not available Windows Client Not available (from October 2019) Not available Web Client Available Available Licensing Nominal (named users) Nominal (named users) Dual Use Right (SaaS an On-Premise) The use can acquire Cloud can download a license for On-premise Cloud Licensing offer “Dual Right license” Intelligent Cloud With relative licenses it is possible to connect to the cloud via Business Central, you can view the same information from in Cloud and on local. Scalability Classic local environment, buy other server and resources or expand your system. Business Central is hosted by Microsoft, on Azure in Public Cloud (Single-SignOn with Active Directory) Multi-tenant database, architecture based only on events and extensions (APP) – No system engineer is needed Costs May be more expensive than Cloud. Virus, Backup etc. System engineer is needed. May be convenient (scalability) and utilization plan. Only at a monthly fee, cost scenarios can be made. No Virus, no system hacks, backup, accessible from anywhere with web client, nothing is installed, system always on. Connectors for (Flow, Power BI, Dyn354, Power Apps) Connectors, you will configure Proxy, Endpoints etc. to connect to other apps and Web Services. You need activate SSL for secure connection. Secure by Design (SSL native). A lot of Connectors ready-to go for Cloud. Only one-username\password to connect everything. Web Services ready to go after publishing. Development Only Microsoft AL & VS Code You need a developer license to develop Only Microsoft AL & VS Code No development license is needed to develop APP Only Development with APP Development with APP Debug Available in Production Environment Not available in production, only in Sandboxes Table Objects You can’t delete data from some tables **OTHERS? ** From comments? My old post (2018) – “Why organizations will choose Microsoft Dynamics 365 Business Central” https:// msdynamicsworld.com/story/reasons-buy-or-move-business-central-2018

Forum Post: RE: Activating Find feature in RDLC report preview

$
0
0
Well color me embarrassed, this feature is dependent on the 'Default Layout' for the report on the NAV side, seems custom reports default to Print Layout and it needs to be set to RDLC layout for the Find/Next features to work in the print preview screen.

Forum Post: RE: Sales return order GL account

$
0
0
Hi Jeremy, As Suresh stated, you do not need to make it negative on the sales return order line. It will already come in negative. If you want to charge the customer a restock fee, you can utilize a misc charge. I have attached an image of an example I did. Set restock % to 10%, then calculated restock fee.

Forum Post: RE: API Integration Tool

$
0
0
NAV 2018 has build in API functionality, it is also possible to communicate with external API from within NAV.
Viewing all 65770 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>