Hi DanGrist if you don't know how to do do it, then don't try!. It is a matter of security configurations and that is something you have to be trained in. If you do it wrong, then outsiders will have easy access to your Financial and sales data. Just to give you an idea of the complexity, a few links: https://docs.microsoft.com/en-us/dynamics-nav/configuring-the-microsoft-dynamics-nav-web-server-and-client https://docs.microsoft.com/en-us/dynamics-nav/how-to--install-the-web-server-components and https://docs.microsoft.com/en-us/dynamics-nav/how-to--configure-authentication-of-microsoft-dynamics-nav-web-client-users -Y ou need a certificate -Create a New webservice -Create a new iis -Open some new ports in the firewall -Create new users in the Users table -Create web-application-password And more... Again, if it is for a live data environment, then get the paid service from a Microsoft partner.
↧
Forum Post: RE: Microsoft Flow for NAV on prem
↧
Forum Post: Error when running New-NAVAppPackage cmdlet
I am at a point in which I want to create the navx file. When I run it I get the following error: PS C:\Silviu\extension> Get-NAVAppManifest -Path '.\Ark.xml' |New-NAVAppPackage -Path ARK.navx -SourcePath .\DELTA New-NAVAppPackage : Cannot package the following unexpected files: C:\Silviu\extension\DELTA\PAG1.DELTA C:\Silviu\extension\DELTA\PAG10038.DELTA C:\Silviu\extension\DELTA\PAG10039.DELTA C:\Silviu\extension\DELTA\PAG10041.DELTA C:\Silviu\extension\DELTA\PAG10043.DELTA C:\Silviu\extension\DELTA\PAG10140.DELTA C:\Silviu\extension\DELTA\PAG10141.DELTA All delta files above contain just new fields. No code, no triggers. Any idea? Thanks!
↧
↧
Forum Post: RE: Error when running New-NAVAppPackage cmdlet
New-NavAppPackage can throw this exception if it can't recognize a file extension, or if the file content is not a source delta (or corrupted). Since the extension 'DELTA' should be accepted by the script, I would look for errors in the files. That's the only idea that can come to mind without seeing the source.
↧
Forum Post: RE: Error when running New-NAVAppPackage cmdlet
This is pag1.delta: OBJECT Modification "Company Information"(Page 1) { OBJECT-PROPERTIES { Date=03/20/19; Time=[ 2:13:13 PM]; Version List=NAVW113.00,NAVNA13.00,MIN_UPGR; } PROPERTIES { Target="Company Information"(Page 1); TargetPageType=Card; } CHANGES { { Insertion ;InsertAfter=Control 82; ChangedElements=ControlCollection { { 1000000000;2;Field ; SourceExpr="E-Mail Billing" } { 1000000001;2;Field ; SourceExpr="File Server" } } } { Insertion ;InsertAfter=Control 74; ChangedElements=ControlCollection { { 1000000002;2;Field ; SourceExpr=PayableEmail } } } { PropertyModification; Property=Version List; OriginalValue=NAVW113.00,NAVNA13.00; ModifiedValue=NAVW113.00,NAVNA13.00,MIN_UPGR } } CODE { BEGIN END. } }
↧
Forum Post: RE: Error when running New-NAVAppPackage cmdlet
Probably the ControlIDs are already taken in the object that you want to merge into: 1000000000, 1000000001, 1000000002
↧
↧
Forum Post: RE: How to add, Advance filters (more filter fields) in Business Central
Hi Erik, Thank you for your prompt reply. I actually didn't know there's an on premise version of Business Central. Because, I have already installed it on my machine and it will open through web browser. Please correct me if I'm wrong here.
↧
Forum Post: User and permission set for Limited License in NAV 2018
Hi Team, I watched a YouTube video: Creating Users and Permissions in Microsoft Dynamics NAV 2016 on full license I have three keys tables; Imprest header : while three fields are on table relation, Imprest Lines: with one field on table relation. Attach document: Its fields are document no and files. The user license is Limited, when I run the page, while the Lines is not editable and attach document which is on page action displayed error message. " you do not have the following permissions on TableData Attach Document Insert ". I created the following permission set and added its to user card, user permission set line after SUPER but still not working. I need your assistance, thanks
↧
Forum Post: RE: User and permission set for Limited License in NAV 2018
Hello A limited user license has only access to modify three tables (+ a set of standard tables, and you have added 4 tables. Perhaps that could be it? Secondly the user cannot have the role SUPER.
↧
Forum Post: RE: How to add, Advance filters (more filter fields) in Business Central
Your User information says that you are working for a Microsoft partner? If that is true, the n you have clearly missed a ZILLIONS of information about Business Central - Are you running it using a Docker Image or did you download a ZIP-file? I guess it must be a zip file and then the version you have installed IS an onpremise version? the SaaS version is only available as a docker image or using azure...
↧
↧
Forum Post: RE: User and permission set for Limited License in NAV 2018
You are right about the user cannot have the role SUPER but when I use BASIC and I added the customize permission set, its working fine. Role center of BASIC and added customize permission set But I'm not seeing the information and customization on my role center, what can I do? Role center with SUPER I want to achieve this role center and likewise the imprest and attach document is working, what can I do?
↧
Forum Post: How to export data from multiple tables to CSV file in Business Central online?
I want to export data from multiple tables into a CSV file. How can accomplish this in business central online?
↧
Forum Post: RE: Business Central Run Time Version issue
This message means that it is your server that does not support runtime 2.2. In this case, you can update your NAV server to version "Business Central Fall 2018 release CU 2".
↧
Forum Post: RE: Business Central Run Time Version issue
Thanks Alexander for reply. Can I use https://www.microsoft.com/en-us/download/details.aspx?id=56517 to update my NAV server? If not, can you please share proper link? Thanks in advance.
↧
↧
Forum Post: RE: Business Central Run Time Version issue
No, your link refers to NAV 2018. You need Business Central CU2: https://support.microsoft.com/en-us/help/4479230/cumulative-update-02-for-microsoft-dynamics-365-business-central-on-pr
↧
Forum Post: RE: Purchase Invoice Line Discount not posting to AP account
Update for anyone who is watching or experiencing this issue: This is a platform bug; track the issue at ID# 306145.
↧
Forum Post: XMLPort export - linktable field is always blank
I have a created an XMLport to export data from two tables. 1) Gen. Journal line 2) Vendor bank account. Here is my code. schema { textelement(DocumentElement) { tableelement("GenJournalLine"; "Gen. Journal Line") { SourceTableView = where ("Journal Template Name" = filter ('Payment')); fieldelement("PAYMTHD"; GenJournalLine."Bank Payment Type") { } fieldelement("AccNo"; GenJournalLine."Account No.") { } fieldelement("Amout"; GenJournalLine.Amount) { } tableelement("VendorAcc"; "Vendor Bank Account") { LinkTable = GenJournalLine; LinkFields = "Bank Account No." = Field ("Account No."); // fieldelement("VendorNo"; VendorAcc.Name) // { // } textelement(VendorAccNo) { trigger onbeforePassvariable(); begin VendorAccNo := Format(VendorAcc."Vendor No."); end; } } } } } The issue is that when I run the xmlport and export data to CSV, the Vendor No. is always blank.
↧
Forum Post: RE: XMLPort export - linktable field is always blank
And this looks pretty much as expected result. Field "Account No." in general journal line contains references to different entities depending on the "Account Type". Even if we assume that all account types in journal lines are bank accounts, you still cannot expect this link to the vendor bank account to work, since "Bank Account" and "Vendor Bank Account" are different entities. Table "Bank Account" is for your company's accounts, and "Vendor Bank Account", is obviously an account of your vendor which has nothing to do with general journal lines.
↧
↧
Forum Post: How to use Code Coverage effectively
Hello! Dynamics NAV developers around the world. In a recent bug fixing scenario, I need to analyze and compare code execution flow using code coverage tool. Dynamics NAV Code Coverage tool has lost its glory of usability in recent versions and this tool is not as efficient as it was and this need tweaking. Please check out my recent blog on following topics: Optimizing Code Coverage Page http://mrinmax.blogspot.com/2019/03/how-to-use-code-coverage-effectively.html Customizing Code Coverage Process Output http://mrinmax.blogspot.com/2019/03/how-to-use-code-coverage-effectively_23.html Please review and comment, let me know you thoughts on this topic. Thanks. Mrinal Singha (email address removed by admin)
↧
Forum Post: RE: XMLPort export - linktable field is always blank
Thanks Alex. The linking of tables was incorrect as you have said.
↧
Forum Post: RE: License Path problem during Export in NAV 2009r2
Hi Mark, You cannot export the license from the system, only upload. The Export function (and import) is really just leftover from the native database/server, which is also supported in NAV 2009. When using SQL Server, then it's not using the license file in the \Classic folder. In regards to "Store license in SQL", then that just means that the license is stored directly in the database and cannot be used by other NAV databases on that server. But even if it is stored there, then it is not stored there as a *.flf file, so it doesn't really help you much. The reason (I guess) is that users should not be able to take a copy of the license and use it somewhere else. A copy of the license is normally provided by your partner, when they install the system. So always store your original license files in a safe place.
↧