Spammer!!!
↧
Forum Post: RE: printer was not working
↧
Blog Post: SD Extension Pack for Dynamics 365 Business Central Developers
On all the Dynamics 365 Business Central training activities I’ve done in the last year for Microsoft Italy, I’ve always received the following questions: why your Visual Studio Code has all these features? Are there a list of extensions that you recommend for working with Dynamics 365 Business Central? I’ve always shared a list of my recommended extensions in the training’s GitHub repository, but after an year of the same request I’ve decided to do a bit more (better late than never). Now, if you open Visual Studio Code marketplace you can find the following extension: If you install this package, you have automatically all my recommended extensions for working with AL and Dynamics 365 Business Central installed for you. When the package is updated, new extensions will be available automatically. Direct link page: https://marketplace.visualstudio.com/items?itemName=StefanoDemiliani.sd-extpack-d365bc Hoping it could be useful for many of you
↧
↧
Forum Post: RE: Changing the posting date while ` reversing the payment entries
based on versions that you "attached" you need to change codeunit. But from my point of the view, I need to know localization and how do you plan to do it.
↧
Forum Post: RE: Changing the posting date while ` reversing the payment entries
i'm using navision 2016. suppose my payment voucher is posted in the system on date 01-11-2019 when i'll reverse the payment voucher the it should as me whether you want to reverse on same date(01-11-2019). currently it is reversing on the same date. if the user select yes then the transaction will be reversed successfully else it should reverse on today's date(13-11-2019).
↧
Forum Post: Weeks in sales lines
Hi folks, I need a field which will show the weeks like its showing in Virtual table(Date) in Sale Line.
↧
↧
Forum Post: RE: A package with publisher 'Microsoft', name 'Base Application', and a version compatible with '15.0.0.0' could not be found
The package cache is where AL looks for the references to the objects in the dependent apps. This is also called 'symbols'. If the symbols are not in the package cache, you need to download them, so run the 'download symbols' command from the command palette. Normally when you create a new AL workspace, you already have a container or a service tier set up as the target, which is defined in your launch.json file.
↧
Forum Post: RE: Changing the posting date while ` reversing the payment entries
OK, is it for Indian localization? When do you start to debug what objects do you run?
↧
Forum Post: RE: Weeks in sales lines
and what date do you want to use as a base value for it? You need to create the FlowField for it (i think)
↧
Forum Post: RE: Changing the posting date while ` reversing the payment entries
Yes it is for indian localization
↧
↧
Blog Post: CI/CD for .NET with GithHub Actions
We manage all our internal projects with Azure DevOps (projects not only related to Dynamics 365 Business Central). All our code is hosted on Azure DevOps but personally I’m using also GitHub for “external” projects or for sharing codes with the community (yes, Azure DevOps has public repository too but I prefer a separation on many cases). Unfortunately, build pipelines was a big lack for the GitHub platform… until today. Yesterday GitHub has officially released GitHub Actions , an interesting set of features that permits you to implement CI/CD pipelines right from the GitHub interface. There’s not too much documentation about the service and all its possibilities at the moment but it seems really interesting if you’re using GitHub as your main platform for hosting your code. I’ve tested the new service by trying to setup a CI/CD workflow on a repository where I have committed a .NET application (a class library we use on NAV and Dynamics 365 Business Central). To start using GitHub Actions , go to your repository and select the Actions menu: Here you can find a set of preconfigured templates to use, but unfortunately there’s not a template for .NET applications (only .NET Core at the moment, I was quite surprised for this). If you have a .NET application, you need to manually create a new workflow by selecting the Set up a workflow yourself button: Here, you have a window where you need to write your build flow. This is the standard template: As you can see, the standard CI/CD pipeline runs on Linux (Ubuntu) and does nothing more than printing some messages. Here, we have a .NET application and we new to run our action on Windows by using MSBuild. We need to modify the CI/CD pipeline script as follows: Here: the image is windows-latest (Windows Server) the actions/checkout@v1 step is a multiline command then pulls our repository to the build server (first line) and then starts MSBuild by compiling our project (thanks to the GitHub support for these details). the second step ( actions/upload-artifact@master ) is used to upload the final artifact (our DLL file) from the build server to GitHub (without this step, you will not be able to download the final artifact of your build). If you commit this main.yml file a build trigger is automatically started and you can see the final result by clicking on Actions again: If you click on the CI event, you can see the details of the pipeline steps (success, failure and the reasons of the failure): If the pipeline is completed successfully, on the top right corner you can download the final build artifact ( Artifacts menu): The workflow (your pipeline .yml file) is automatically saved in your repository and it’s part of your source control: This is only a sample on how to easily create a CI/CD pipeline on GitHub for a .NET application in few easy steps. I think it’s cool and powerful. I’ve not tested with Powershell yet, but from a GitHub Action you can execute Powershell scripts too. I’m not so sure if GitHub Actions can be used also for Dynamics 365 Business Central projects (this must be explored) but it sounds promising for many other scenarios.
↧
Forum Post: Record Links in web client of BC on premises
My first query we still don't have option to browse the file from BC web client and another query is if I keep the website in the links, it opens in new tab but if I keept the file path it does nothing . The file does not open.
↧
Forum Post: Transferfields command using with multiple linked tables
Hi all, I have to copy record from a tableA of CompanyA into same tableA of companyB. I am using command TRANSFERFIELDS so that record of tableA from companyA is transferred into the tableB of companyB - this works as expected. I need to add also tableB which is basically a linked table to tableA, but I can't workout how to link another table to the source table. I tried to crate a local function of CU50011 and PAGEn from where I run below code which is inside a CU50011. This is the code and transferres record into the selected company as expected: JobTaskRec.CHANGECOMPANY(CompanyTo); //copy record in another company JobTaskRec.TRANSFERFIELDS(SourceJobTask); //user's record to be copied JobTaskRec.INSERT(TRUE); And, now I need to copy also records of linked tableB and I am lost on linking records from TableA to TableB. Can you advice me how to link table to source table so that I can transfer also records of linked table, too? Thank you Damjan
↧
Forum Post: RE: Transferfields command using with multiple linked tables
Sorry, but I lost the idea for the TableB. I can see " I am using command TRANSFERFIELDS so that record of tableA from companyA is transferred into the tableB of companyB " and can read " I need to add also tableB which is basically a linked table to tableA ". You need to select information for the TRANSFERFIELDS either from tableA or tableB.
↧
↧
Forum Post: RE: Transferfields command using with multiple linked tables
Hi, I have copy record from tableA and also linked record on tableB. I hope it's understandable, now. Tnx
↧
Forum Post: RE: Transferfields command using with multiple linked tables
Sorry, but I don't understand because I can see TableB 2 time => you need to select 1 table for the TRANSFERFIELDS and transfer "manually" for 2nd table
↧
Blog Post: My NAVTechDays
I got quite a week ahead of me .. . Not only will I host one session and some workshops .. I will actually host 2 sessions, 2 workshops and an ISV session this year. What did I get myself into? No repeats! If you look at my session schedule, and you have visited Directions EMEA, well, you might wonder if I’m “just” redelivering content at NAVTechDays. Well .. No! Totally not, actually. Without giving away anything – let me try to explain … Development Methodologies for the future (Thursday 11:30 – 13:00) First of all, if you attended my session at Directions, you noticed that there, I prepared actually 3 sessions, and the audience chose the topic of that particular session. I was lucky that all three topics that I prepared were quite equally popular while the audience was voting – so I would be stupid to do just a repeat. No, I will actually slice a completely different topic as I did on Directions EMEA. All new content – and more ;-). More details Thursday at 11:30 during my session ;-). {Connect App}² (Friday 11:00 – 12:30) My session with Vjeko at Directions was “Connected Apps” .. . This one is “Squared” ;-). Which means: more! Much more! So, If you attended that one on Directions, and you thought we took it “far” – well – think again! Just to say, also this one is not a repeat. How could it be? At Directions, there were only 45 minutes ;-). Workshops Also this year, I will be hosting workshop during the predays, which I always look forward to. I just hope that the internet will be good, because I will be quite dependent on it ;-). I prepare individual Azure VMs for every attendee to make it as comfortable as at all possible .. but that means: internet! ;-). What I will be doing is something I have been doing quite a lot … Developing Extensions for Microsoft Dynamics 365 Business Central – Introduction (Tuesday) For the people that are putting their first steps into AL development. Developing Extensions for Microsoft Dynamics 365 Business Central – Advanced (Wednesday) For the people that already have put their first steps .. but still feel they need some guidance for the “stepping” to feel comfortable (if that’s an explanation at all ;-)). ALOps (Thursday 15:40 – 15:55) And if that’s not enough .. I’m doing yet another session .. . This one is an ISV session for the product we have been working so hard on to get to the community: ALOps. We are a Platinum sponsor, which comes with an ISV slot – and I’m looking forward to speak to all people that are interested in “doing decent DevOps for AL easily” ;-). We will obviously also have a booth at the EXPO – please come by! We have stickers ;-). And we might just get your pipeline upt and running .. during the conference ;-). In total, that means I have about 19 hours and 15 minutes of content to deliver on NAVTechDays … . Again .. what did I get myself into :-/.
↧
Forum Post: How to add open balance to trial balance report in nav 2018
Hi Team, My client wants opening balance (column) to be showing in the trial balance report when he runs it with date filter but the default trial balance report that not have those feature. Regards
↧
↧
Forum Post: RE: How to add open balance to trial balance report in nav 2018
I think the main reason here that either you or your customer does not understand how the opening balance is posted to G/L and therefore you have a request like this. If it is a matter of seeing the values only then its a matter of using the correct date filter (the date that the entries was posted). So please explain a bit further what it is that you exactly need, as this is an unusual request... Thanks.
↧
Forum Post: RE: Changing the posting date while ` reversing the payment entries
The object is codeunit Reversal Post .
↧
Forum Post: Select Variant on Sales Order
I've looked through history and it doesn't appear this question has been asked before. Using BC in the cloud. I have an item that comes in three different sizes. I have set up variants for these sizes and built a cross reference for the items, but I do not see how I can select the different variants on a sales order. I'm only presented with the base item number.
↧