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

Forum Post: RE: Clean up Docker images on Azure

$
0
0
Hello Remove-NAVcontainer does only remove your container and not the images that you have pulled. So Yes Docker system prune is the way to do it.. and ofcourse it does give you warnings. But really, if you are doing stuff like this in a "live" enviroment, why dont you just try to install docker locally and get a few images and try to do what you have googled/binged?? A simple google could also give you this link: https://blogs.msdn.microsoft.com/freddyk/2018/12/11/clean-up-after-yourself-docker-your-mom-isnt-here/

Forum Post: RE: how to display Amount per Text Box in RDLC

$
0
0
you are trying to fill from "left-to-right & First-to-last symbol", but you need to fill from "right-to-left & from-last-to-first symbol" Let's imagine we have DecValue = "24.86". We have new TXT line PrintLine[14] where PrintLine[12] = '.' to receive 2 symbols after '.' we should do something like PrintLine[13] := COPYSTR(FORMAT(DecValue-ROUND(DecValue,1)), 1,2) For "integer part" we should do either FOR-circle with DOWNTO type calculation or DO, WHILE (it is up to you) -> fill either Symbol from "integer part" or " ". Finally, just print the PrintLien[{x}]

Forum Post: RE: C/AL Code support in Notepad++

$
0
0
Hi Erik, This is not for code writting but significantly improve code readability.

Forum Post: RE: C/AL Code support in Notepad++

$
0
0
Readability?? What can Notepad++ do for readability that VSC cannot do?

Forum Post: RE: C/AL Code support in Notepad++

$
0
0
I would say what the build-in C/AL editor in C/Side cannot do.

Forum Post: RE: C/AL Code support in Notepad++

$
0
0
we exchange so many objects in text format and sometimes it throws error while importing. This helps dealing with single text file with bulk objects. replying to your previous commitment, my bad for promoting my blog, please suggest a forum.

Forum Post: RE: C/AL Code support in Notepad++

$
0
0
I have worked with Navision including the text files for many many years, and I simply cannot see how it could help you having a text editor. If anything, then use VSCode, then at least its an environment which (eventually) is familiar to the development. --- The forums are for posting questions, or starting discussions. Not for promoting your blog (unless someones asks a question solved by your blog post). If you are interested, then I can setup a "blog mirror", where you blog going to be syndicated to our blogs via the RSS feed from your blog.

Comment on Days of Knowledge – New BC Conference in Denmark

$
0
0
This book is indeed full of treasure of knowledge regarding the technology. In reality it is said by the $1 deposit casino 2019 nz services that that this book teaches us the techniques to get to know more about the technology. The related people must read this amazing g piece of work. $1 deposit casino 2019 nz

Forum Post: RE: Business Central On Cloud PO missing Receiving No. Series, SO Missing Shipping no. series

$
0
0
Hi, Actually, your questions are not that clear, and my answer just a simple guide! I hope it can help, Just follow the video . https://youtu.be/4qLg3ro2oSo

Forum Post: RE: Business Central On Cloud PO missing Receiving No. Series, SO Missing Shipping no. series

$
0
0
Are these orders created in the same way - via standard UI? If it's not a persistent issue, but happening only sporadically, there must some difference. Is there any process importing documents, or maybe a web service exposing the orders?

Forum Post: PowerApps and Business Central Opportunity Card

$
0
0
Dears I am trying to build a simple App with PowerApps acting exactly like Business Central. I am able to make an App for Customer Card and the users able to create new customers from the PowerApps, But when I search for the datasets of Opportunity I cannot find. I am sure there is a way to add that. Also, I need to do the same for the Contacts Please help.

Forum Post: Adding Dimension when new Opportunity Created

$
0
0
Dears I need to Create a dim. when new Opportunity created, the Dim will be Shortcut Dimension 5 the Value will be the Opp. No.

Forum Post: How to attach/upload files to Dynamics NAV System

$
0
0
Hello team, I am designing a system on Dynamics NAV 2018, all the users except the technical team will be using Dynamics NAV 2018 Web Client on their computers. They presented a requirement that they need to upload documents/files to Dynamics NAV system using the web client. This files upload will be attached to the Customer table records. Kindly advise on the possibilities file attachment/upload to Dynamics NAV 2018 and how this could be achieved. Thanks in advance.

Forum Post: RE: How to attach/upload files to Dynamics NAV System

$
0
0
Development I guess... Honestly you do n ot provide much information, hence the vauge answer...

Forum Post: RE: Adding Dimension when new Opportunity Created

$
0
0
What version, what is your flow? and it it not just a simple matter of modifying the New Opportunity Wizard?? Vauge questions..gives bad answers..;-)

Blog Post: Dynamics 365 Business Central: improving the user’s search experience for your extensions

$
0
0
As you already knows, with the new web experience in Dynamics 365 Business Central the menusuite object is disappeared and the Search functionality is now essential to find the right object or function you need for performing a particular business task. Dynamics 365 Business Central has a powerful built-in search engine that you can start using by going to the Tell me feature (click on the lens in the top-right corner): The Tell me feature heps the user to find objects inside the Dynamics 365 Business Central system but also external things like online help, articles and applications on AppSource (only in a production tenant). Regarding the application objects (pages, reports etc.) the search is perfomed by using the UsageCategory property. The  UsageCategory  setting will make the page or report searchable and the value chosen for this setting will further sub categorize the item. When you create a page object in your extension and you set the UsageCategory property to a value different than None , your object is “search classified” by this setting value ( Lists, Tasks, ReportsAndAnalysis, Documents, History, Administration ) and it will be automatically searchable by caption (the value of the object’s Caption property will determine the search keywords for your object): Often, the Caption property is not enough “intuitive” for and end user to search for an object. If your user doesn’t know well what object name to search, sometimes it could be difficult to find the right object. This is why I always suggest to use also additional search terms for your objects . When you define an object, you can now specify other words or phrases that cen help the end user to better find an object, You can do that by using a property called AdditionalSearchTerms . As an example, in an extension I’ve created a new page called “Simple Customer List” defined with the following Caption and AdditionalSearchTerms  properties: When you deploy this extension to Dynamics 365 Business Central and you activate the Tell me feature, you can see that (as a usual standard behaviour) you can find your object by searching for its  Caption keywords: But now you can also search for the defined alternative keywords and the search engine will find your object: NOTE: For Business Central on-premises, the Business Central Web Server configuration file (navsettings.json) includes a setting called  UseAdditionalSearchTerms  that enables or disables the use of additional search terms by the  Tell me . I think that this property should have more importance than the actual it has now and I think also that it should be mandatory for AppSource ( AppSourceCop analyzer could check for this property as default). If you want to help your users find the right functions, please use this property on your extensions. P.S. the AdditionalSearchTerms  property actually doesn’t work with pageextension objects. You can define the property in the pageextension object itself but the keywords does not work on the search engine. This is a bug (?) that will be soon fixed.

Forum Post: RE: PowerApps and Business Central Opportunity Card

$
0
0
What are you exactly trying to do.. and what have you done so far?

Forum Post: RE: Adding Dimension when new Opportunity Created

Forum Post: RE: Adding Dimension when new Opportunity Created

$
0
0
And what is your flow? and is it not a just a simple matter of modifying the new opportunity wizard???

Forum Post: RE: PowerApps and Business Central Opportunity Card

$
0
0
OK, I need to make a PowerApp Application to let CRM team record just the Opportunity with few info & and this will require them also to add new Contacts. This is while they are traveling or not in the office and there is a traffic Manager completing the Opp. info on the BC itself. and Finally, I don't have enough lic. and don't want to purchase. more then I used PowerApp with one user name & password for many users through power apps just like a device license which I think is not available now only Named license in the PowerApps studio, I can see connections only with few datasets/tables like customers & G/L Account Then How to add more like the Opportunity / Contact
Viewing all 11285 articles
Browse latest View live