Needs customising
↧
Forum Post: RE: Changing the posting date while ` reversing the payment entries
↧
Comment on Business Central - Days of Knowledge 2019
I personally like your post, you have shared good article. It will help me in great deal. gmailloginm.online/
↧
↧
Forum Post: RE: Creating an Odata webService for an external app
Hi everyone, SOrry for raising up this post again, but I need advice. Is it possible to create function into a page published, and call those functiones using oData from an external app? Thnak you very much
↧
Forum Post: How to install custom fonts for reports in BC15 using Docker?
Hello I am currently designing and developing custom reports for Business Central 15 (with Docker) using VS Code. I design my report in Word, and everything looks fine, but when I run the report in the web client, the font is incorrect. I'm guessing there are no custom fonts pre-installed? Does anyone know how to solve this? Any help is greatly appreciated. Thanks, Vincent.
↧
Comment on Tips and Tricks using the Dynamics NAV Debugger
Hi, I would like to resize the watch list of debugger, and I googled around and haven't found anything regarding that.... I really hate that I have to click on the slider bar... Thanks, Damjan
↧
↧
Forum Post: Unexpected end tag error in BC wave 2
Hi all, I have a simple variable text XMLport which imports data into two fields of a custom table. But I get the following error when I pass 'invoice' as transaction type and transaction ID 1. This is how I'm testing it:- I am clueless on what is wrong. Any help would be highly appreciated. Thanks
↧
Forum Post: RE: Creating an Odata webService for an external app
Sorry for uprising this post. I am creating an extension for integrating via REST webServices with an external application. First of all, I've created a simple table: fields { table 50701 "KanbanizeCard" ..... field ( 1 ; "ID" ; Integer ) { Caption = 'ID' ; DataClassification = ToBeClassified ; } field ( 2 ; "Nombre" ; Text [ 200 ]) { Caption = 'Nombre' ; DataClassification = ToBeClassified ; } } I've published a page for this table as a WebService, and created this function: } [ ServiceEnabled ] procedure AddCard ( var actionContext : WebServiceActionContext ) var card : Record KanbanizeCard ; ODataActionManagement : Codeunit "OData Action Management" ; begin ODataActionManagement . AddKey ( Rec . FieldNo ( ID ), Rec . Nombre ); card . Get ( Rec . ID ); card . Nombre := 'clip' ; card . Modify (); end ; And I'm calling with post, to this URL: https : //api.businesscentral.dynamics.com/v2.0/xxxxxx-e780-4167-8bff-xxxxxx/SandboxKANBANIZE/ODataV4/Company('CRONUS ES')/KanbanCard(33888)/NAV.AddCard() The result is not bad, I get the record with 33888 key, and the 'nombre' field is changed to 'clip'. BUt of course, the goal of this development is to send the new 'nombre' as parameter, not fixed into the code. How can be this made? I'm reading about this issue, boundary actions and all that, but I don't understand how to define correctly the objets, and how to make the call to the URL... Probably somethin with the actioncContext and OdataActionManagement, but I'm lost. Any hint will be really appreciated
↧
Comment on Taking the modern client for a spin
Now updated with a list of shortcuts in the Modern client
↧
Blog Post: Working with dates in AL vs. C/AL
It’s friday afternoon and I’m goofing around a bit with the ForNAV AL Converter. I ran into something I want to share. AL seems to be more strickt in hardcoded dates than C/AL. Example Constant value '99993112D' is outside the range for a Date. The syntax for defining Date format is yyyymmddD, where D is a mandatory letter. For example, 20180325D, read as the 25th of March, 2018. This should be 99991231D but C/Side exports it using your regional settings. Fortunately we can fix this in C/Side by changing the code to DMY2DATE(31,12,9999) I only have to replace 42 instances for the project/partner I’m currently working on. Thank god it’s friday afternoon.
↧
↧
Forum Post: RE: Published V2 Extension Online in Dynamics 365 Business Central Cloud Sandbox but not showing our Customize extension part ?
Problem solved when i am creating extension with 55000 range .Custom pages are showing in base pages.
↧
Blog Post: [VIDEO] Use the Export to Excel Function for Account Schedules with NAV/BC
I just taught my all-day Account Schedules class at the User Group Summit Pre-Academy days for the eleventh year last month. This year, my students asked me to please record a video of how to create the “Excel shell” I use to create financial statements quickly and easily every month. This is that video, shot in both NAV 2018 (which will apply to any version of NAV 2013-2018), and Business Central. Use the Export to Excel Function for Account Schedules with Dynamics NAV Use the Export to Excel Function for Account Schedules with Dynamics 365 Business Central If you’ve taken one of my classes before, this is the final lesson of the day, the one that shows you how to tie it all together and get efficient with Account Schedules. If you’ve never taken one of my classes before and you are still dumping your trial balance into Excel and pushing the data around every month give this a try instead.
↧
Forum Post: A package with publisher 'Microsoft', name 'Base Application', and a version compatible with '15.0.0.0' could not be found
Hi Expert I am trying to create package from AL files .After create project with my Dynamics 365 BC credential in VS code .It's generate App.json file . When i try to build my project it's showing below error , Problem : A package with publisher 'Microsoft', name 'Base Application', and a version compatible with '15.0.0.0' could not be found in the package cache folder 'c:\Users\surajit\Documents\AL\ALProject2\./.alpackages' OutPuts : [2019-11-09 17:25:03.07] Using reference symbols cache path: c:\Users\surajit\Documents\AL\ALProject2\./.alpackages [2019-11-09 17:25:03.09] Sending request to api.businesscentral.dynamics.com/.../packages Application&versionText=15.0.0.0 Microsoft (R) AL Compiler version 4.0.2.60812 Copyright (C) Microsoft Corporation. All rights reserved Compilation started for project 'ALProject2' containing '1' files at '17:25:3.960'. error AL1022: A package with publisher 'Microsoft', name 'Base Application', and a version compatible with '15.0.0.0' could not be found in the package cache folder 'c:\Users\surajit\Documents\AL\ALProject2\./.alpackages' Compilation ended at '17:25:3.976'. Error: The package could not be created. AppJson : { "id" : "2813f98c-6390-4d0c-a1de-40267d42cf14" , "name" : "ALProject2" , "publisher" : "Default publisher" , "version" : "1.0.0.0" , "brief" : "" , "description" : "" , "privacyStatement" : "" , "EULA" : "" , "help" : "" , "url" : "" , "logo" : "" , "dependencies" : [ { "appId" : "63ca2fa4-4f03-4f2b-a480-172fef340d3f" , "publisher" : "Microsoft" , "name" : "System Application" , "version" : "1.0.0.0" }, { "appId" : "437dbf0e-84ff-417a-965d-ed2bb9650972" , "publisher" : "Microsoft" , "name" : "Base Application" , "version" : "15.0.0.0" } ], "screenshots" : [], "platform" : "15.0.0.0" , "idRanges" : [ { "from" : 55000 , "to" : 55100 } ], "contextSensitiveHelpUrl" : " ">https://ALProject2.com/help/" , "showMyCode" : true , "runtime" : "4.0" } Please suggest what is the issue ? Thanks Surajit Kundu
↧
Forum Post: New webservice insert Permission issue for 55000 range in Dynamics 365 BC
Hi Expert , I have created one new 'AEC App' table object (55000) and Created one list type page 'AEC App' .Using that page i have expose one webservice. When i try to post a data it's throwing an error : Request Url : api.businesscentral.dynamics.com/.../aecapp Body : { "AppId" : 1, "AppName" : "Shopify" } Error Details : { "error": { "code": "Internal_ServerError", "message": "You do not have the following permissions on TableData 55000: Insert.\r\n\r\nTo view details about your permissions, see the Effective Permissions page. To report a problem, refer to the following server session ID: '6954'. CorrelationId: 093b3621-c6c1-4056-8872-86b5c78aaf50." } } I have added ExtensionPermissionSet.xml in my project using command .By default this xml was generated with only ExecutePermission .I am getting above error After upload that extension . I have set all permission for all objects but getting same error : 0 55000 1 1 1 1 1 1 55000 1 1 1 1 1 As of i know for 55000 objects no permission required . I have set the permission but in user effective permission page it's showing that user have only execute permission . Please give me suggestion how to give permission in tabledata for 55000 object range . Thanks Surajit Kundu
↧
↧
Forum Post: RE: Changing the posting date while ` reversing the payment entries
i'll do customszation need only suggestion how can i implement this
↧
Forum Post: I am using Business Central Wave 2 version, My Client previously using 3 decimal places. Before Wave 2 it is working fine but after update Production environment from Spring to Wave2 it is showing only 2 Decimals.
Hi All, I am using Business Central Wave 2 version, My Client previously using 3 decimal places. Before Wave 2 it is working fine but after update Production environment from Spring to Wave2 it is showing only 2 Decimals. I have checked General Ledger Setup Amount Decimal Places (LCY) = 3:3.(I have make this 3:3) Also I can't change Inv. rounding precision to 3 decimals(0.001) But still it is showing 2 decimals in Chart of account. Please suggest solution.
↧
Blog Post: ADVANCED Account Schedules class now available in 2019 and 2020
Based on feedback from students who have taken our Dynamics NAV and Dynamics 365 Business Central Account Schedules classes, we have now created the ADVANCED ACCOUNTS SCHEDULES class! This advanced level class is full of all new material on topics you requested based on survey results. We are so excited to offer a class to LEVEL UP your skills using Account Schedules in Dynamics NAV and Dynamics 365 Business Central. This class is only going to be offered twice in the next year. One of those sessions is only 5 weeks from now, December 11-13, 2019 in Chicago, IL and the other will be May 13-15, 2019 in Texas (exact city TBD). As someone who reads dynamicsnavfinancials.com, we are offering a special discount for the December class being held 5 weeks from now. Please enter the discount code of DNF100 to get $100 off your class registration. Take a look at the detailed description for the class: Take your knowledge about account schedules in Microsoft Dynamics NAV / Dynamics 365 Business Central to the next level in this active hands-on workshop . Bring your trial balance and recent financials with you to class so we can dig in and show you how to map what you have to your balance sheet, income statement, and statement of cash flows, and then design and set up your financial statements in account schedules. If you’ve never been able to set aside the time to finally build your financial statements, come to this class to get the dedicated time and support needed to check this off your list. Spend Day 1 getting started with mapping your trial balance and applying the fundamental concepts to design and build your own basic financial statements. We’ll also put together all the most commonly used column layouts to view the schedules you’ve built in different ways. During Day 2 we’ll layer in your budgets and dimensions to those reports and building your Excel shell to easily produce your financial statements each month by only refreshing the numbers. We’ll spend plenty of time learning how to build the shell and maintain it when changes happen. We’ll bring it home Day 3 by learning other advanced topics like using account schedules in consolidations, using RapidStart to populate account schedules to multiple companies, account schedules with KPI web services and the complementary tool to account schedules: analysis reports and analysis by dimensions. Who Should Attend? CFOs, Controllers, and accountants seeking to truly unpack the power of Account Schedules and simplify their financial reporting ongoing. I would LOVE to see you in class to dive deep into learning even more about ERP accounting software. Please feel free to reach out to me directly if you have any questions about this, or any other of the over 40 classes we are teaching in 2020 .
↧
Forum Post: Temporary Record Copying
Hello Community, i'm kind of confused. I got an example i would like to get solved. If you would perform calculations on user selection in Page 981 (Payment Registration Buffer) what would be the correct way to do so? I tried to copy the Tab981 (Temporary) into another Table of the same specification, but I can not manage it, because if i would loop through the original record to perform a newRec := Rec and newRec.Insert -> everything is getting messed up. Its bad practice to loop through the displayed record and it gives you weird results. How can i copy the record so, i can perform all my calculations, while the original record is untouched?
↧
↧
Forum Post: printer was not working
I have an HP xerox printer. I noticed a few days back that whenever I printed any paper, it printed nothing. The papers have remained black after the printing process. I changed the cartridges and tried to solve that in many ways, but failed. Then I got the solution after searching many websites and contacted xerox printer repair in USA . Now my printer is working perfectly.
↧
Forum Post: RE: Temporary Record Copying
Sure, no problem. Moved from Dynamics 365 for Finance and Operations/AX Developer forum.
↧
Forum Post: RE: printer was not working
Erik P. Ernst please delete this one and block the shitty user...
↧