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

Forum Post: RE: I got Action in page extension -Reference to symbol 'Release' is ambiguous.

$
0
0
Why you write a code in the OnAfterAction event? It's not so good writing a code in a page extension. My suggestion is to subscribe the OnAfterValidate event of the Status field and then here write your code by checking the status: if Status = Status::Released then //... else //...

Forum Post: RE: Extend Item Entity API problem with itemattributes jsonarray

$
0
0
ok got it working now. I had to make a new itemattribute part and attach that to "Item Entity" API Page and then som logic to calculate attributes OnAfterRecord

Forum Post: RE: I got Action in page extension -Reference to symbol 'Release' is ambiguous.

$
0
0
OnAfterGetRecord( ) and OnModifyRecord( ) Wright on below code IF REC.Status = Status::Released then Begin PurchaseOrderRec.GET("Document Type", "No."); PurchaseOrderRec."Status RPE":= true; PurchaseOrderRec.MODIFY; END ELSE Begin PurchaseOrderRec.GET("Document Type", "No."); PurchaseOrderRec."Status RPE":= False; PurchaseOrderRec.MODIFY; END; (or) then Wright code in Release and Reopen button.

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

$
0
0
Cumulative Update 25 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 38 for Microsoft Dynamics NAV 2016 has been released

$
0
0
Cumulative Update 38 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...

Blog Post: Cumulative Update 12 for Microsoft Dynamics NAV 2018 has been released

$
0
0
Cumulative Update 12 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2018. 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...

Forum Post: Disabling Export to Excel (Ctrl + E) and Other Keys

$
0
0
Hi, We are using NAV 2016 and the Manufacturing team has many proprietary formulas (BOMs). The management wants to secure the system so that users cannot export the data or initiate a printscreen command. Can we disable Ctrl + E and the 'Prt Sc' in NAV? Also, is there a way to disable other methods of exporting data to PDF, CSV, etc. in the Reports section? We do not need an enterprise wide ban. We need it configured on a few PCs and laptops only. The requirement is to control the feature using the NAV user id / permission sets. We do understand that someone can take a screenshot from his / her mobile but that is not a problem. Any help will be deeply appreciated. Thanks, Pradeep

Blog Post: Cumulative Updates for Microsoft Dynamics NAV 2016/ 2017/ 2018 released in Dec 2018

$
0
0
Cumulative Update 38 for Microsoft Dynamics NAV 2016 (Build 50785) This cumulative update includes all hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2016, including hotfixes and regulatory features that were released in previous cumulative updates. This cumulative update replaces previously released cumulative updates. You should always install the latest cumulative […]

Forum Post: RE: Transfer Order

$
0
0
Thanks for the response. I never seen any provision to add VAT posting groups in transfer order form.

Forum Post: RE: Planning worksheet

$
0
0
Because It's doing so much thing on the backround. You have to set filters on specific items or specif times. Please be more specific, how many items you have , how many boms you have

Comment on Latest news on Dynamics 365 Business Central from Microsoft Inspire 2018 conference in Las Vegas

$
0
0
Full article is really usefull, thanks www.linkedin.com/.../latest-news-dynamics-365-business-central-from-inspire-ermakov

Forum Post: Download cumulative update , not available any more.

$
0
0
Hello When I attemp to download Microsoft Dynamics Nav 2013 CU3 ES build 34902 https://support.microsoft.com/en-us/help/2852685/update-rollup-3-for-microsoft-dynamics-nav-2013-build-34902 tells me the link is not available any more. "Click at Hotfix download". I need to download this release to merge code with Business Central CU01 . Does Microsoft keeps all releases in a directory to download?? I would appreciate if somebody can help me to find out this download link alive or can provide Cronus from Nav 2013 CU3 , build 34902 (NAVW17.00.00.34902 )

Forum Post: RE: Download cumulative update , not available any more.

$
0
0
I have had a similar issue with old version and MS says that they don't have them available. I don't understand how that can be but that is what I am told.

Forum Post: RE: Analysis By Dimension -Getting the Analysis View Entry does not exist

Forum Post: RE: Analysis By Dimension -Getting the Analysis View Entry does not exist

$
0
0
I have reply back to the email with the Error Screen. Not sure how to upload it on the Forum.

Forum Post: RE: Analysis By Dimension -Getting the Analysis View Entry does not exist

Forum Post: The total available quantity has already been applied

$
0
0
Hi Everyone, When I create a pick for an item from warehouse shipment I got Zone Code and Bin Code Empty. And When i am trying to enter bin code it pops up an error message that "The total available quantity has already been applied". The quantity to take is available in the Item Bin contents. Nav Version : Dynamics Nav 2017 CU15.

Blog Post: Quick Start with Extensions for Business Central

$
0
0
Today I am going to give you a tip for getting started with Extension Building for Business Central. As AL have newly introduced so it is going to take time to learn and be comfortable with programming using AL codes. Best way of learning anything is learning by examples. What if we first learn what […]

Forum Post: Date wise report name

$
0
0
Hi All, I have a report, where i want put the name as if it contains only one day's transaction, it will set the report name text variable as 'Daily', and if it is 7 days, then 'Weekly', then 'Monthly' ..etc. Is there any way in CAL to count records after applying unique, as in sql ?. Thanks All,

Blog Post: Access protected file share

$
0
0
There was a post, where a user wanted to get read/write acces to a file share outside the current domain from within Nav. This can be done via .Net: NetworkCredential := NetworkCredential.NetworkCredential(username, password, domain); // Credentials for domain 2 CredentialCache := CredentialCache.CredentialCache; Uri := Uri.Uri(‘\\server’); // the server name from domain 2 CredentialCache.Add(Uri, ‘Basic’, NetworkCredential); Dirs := SysDir.GetDirectories(‘\\server\directory’); // get folder list from the file share FOR i:=1 TO Dirs.GetLength(0) DO DirListTxt := DirListTxt + FORMAT(Dirs.GetValue(i-1))+’\’; //.net index starts with 0 MESSAGE(DirListTxt); // print out the dir list variables NetworkCredential DotNet System.Net.NetworkCredential.’System CredentialCache DotNet System.Net.CredentialCache.’System Uri DotNet System.Uri.’System Dirs DotNet System.Array.’mscorlib SysDir DotNet System.IO.Directory.’mscorlib DirListTxt Text i Integer
Viewing all 64865 articles
Browse latest View live


Latest Images

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