Quantcast
Viewing all 17314 articles
Browse latest View live

How do I see my TODO comments?

Hello AX World, As a person and professional developer hit by dozens of information every day, I make TODO comments. So I don't forget things, or do I? Recently , after 6 months of hardcore development...(read more)Image may be NSFW.
Clik here to view.

Blockchain for EDI: How Secure is it?

Data Masons is pleased to present our blog series on Blockchain and EDI. Blockchain is quickly becoming less of a buzzword and more of an inevitability in the B2B world as more companies utilize it in their business practices, including in EDI processes. We're starting our series by addressing the most important question that accompanies any new technology. How secure is it? Sometimes it seems like technological advances face a constant battle between ease of use and security.

While no technology can be completely risk-free, Blockchain does have some advantages due to the way information is added and stored, and security protocols which are unique to Blockchain. Read on to learn more about how security works, and what it means for you as an EDI user.

What, Exactly, is on that Chain?

Whenever a transaction is processed using Blockchain (also known as “the Block), it is added to a limitless chain of linked transactions, or blocks. This distributes a copy of the chain and transaction throughout the Blockchain network, which results in a decentralized, distributed ledger.

 

The Security of Immutability

The blocks in the chain are immutable, which means that they can’t be modified once they’re added. If changes need to be made, this requires a separate correcting transaction, rather than a change to the transaction itself.

Even though shifting from correcting ledgers to creating new ledgers for corrections could be a pain, it has a couple of advantages. First, it will force companies to adjust their business practices to minimize the chance of mistakes and the need for corrective transactions. Second, it makes it extremely difficult for the data to be attacked because of security protocols such as Proof of Work.

 

Smart Contracts to the Rescue

But the need for corrections will be minimized, thanks to Smart Contracts. We'll cover them more in depth in a future blog post, but simply put, Smart Contracts will do the work to make sure that each transaction is correct BEFORE it takes place, without the need for human intervention. Today’s method often relies on validation from disparate and disconnected systems, but a Smart Contract provides another type of security for Blockchain users: assurance that transactions are correct before and after they take place.

We'll also go over immutability in the future, including, why exactly a block is unchangeable, but here’s what it means in terms of security: if a hacker or other malicious party wants to alter any data on the Block, it would mean altering the entire chain, and they would not be able to achieve a consensus. The definition of consensus in terms of a Blockchain principle is outlined in further detail in Blockgeek’s awesome post, but suffice it to say, it’s a necessity of any Blockchain transaction, and makes Blockchain a much more secure way of doing business than today’s standards.

 

Is Your EDI System Ready?

The bottom line, though, is that the Block is only as secure as the software interacting with it. It’s an exciting buzzword and you want to make sure that your EDI system is not only eager to use it, but prepared to keep it secure and give you the peace of mind that you need. Download our brief or read the upcoming posts in our Blockchain and EDI series to learn more about how to evaluate your EDI system for this emerging innovation.

Image may be NSFW.
Clik here to view.

PUG Summit | Understanding Time Intelligence with Power BI

Presenter: Dan Edwards

Auto Date Fields

Power BI can create automatic date hierarchies, for report and drill down by Year/Quarter/Month/Day. It’s important to consider whether your data model has more than one fact table with a date attribute. If there are multiple facts, or you have already created a date table, it’s a better to use your own date dimension.

“Don’t use auto date/time” -Dan

I love these types of tips and tricks – here’s how it works, and don’t do it!

Creating a Date Table with DAX

It’s possible to use a DAX expression to create a date table. The initial DAX expression looks like this:

Date = CALENDAR(“1/1/2016”, “12/31/2019”)

Use the DAX expression to create a New table in Power BI.

Image may be NSFW.
Clik here to view.
2018-10-17_14-50-22.jpg

Then additional columns can be added to the Date dimension table:

Month = MONTH(‘DATE'[Date])

Image may be NSFW.
Clik here to view.
2018-10-17_14-53-35.jpg

It’s also possible to do concepts like MonthDate where you calculate a Date column with the first day of every month, which can provide flexibility.

MonthDate = DATE( YEAR(‘DATE'[Date]) , MONTH(‘DATE'[Date]) , 1 )

Image may be NSFW.
Clik here to view.
2018-10-17_15-04-02.jpg

Using an Effective Date

One of the scenarios is a scenario where the user wants to pick the effective date – for example a cutoff date or the last 12 months.

Dan mentioned he has a fairly extensive blog post on how to implement this concept.

 

Great presentation!

Image may be NSFW.
Clik here to view.

Can you ignore Auto Declaration property in form extension classes?

Hello AX World, I just found something crazy. Maybe it's just in the version I am working on, but it's something completely unexpected. Well... at least for me. The version I am working on is 8...(read more)Image may be NSFW.
Clik here to view.

Dynamics 365 extensibility roadmap updates

Findings from #UserGroupSummit I’m sitting here after attending the MSFT14 – Dynamics 365 for Finance and Operations: Microsoft Managed Continuous Updates and Support Experience session at...(read more)Image may be NSFW.
Clik here to view.

Work with computed columns on a view

Example for computed column without SysComputedColumn class. 1. Create a new method on your view 2. Set the method as private static server. private static server str GetDayName() {...(read more)Image may be NSFW.
Clik here to view.

Post#23: GL – Advanced Rules via SQL Query

Tracking all the Accounting Structures and advanced rules created across all entities in AX is a daunting task especially if you have a lot of entities. A lot of users try to do this manually but there...(read more)Image may be NSFW.
Clik here to view.

Price Engine in Dynamics 365 for Finance & Operations

Price Engine in Dynamics 365 for Finance & Operations In a previous blog post I talked about setting up prerequisites when using the trade agreement journals in Dynamics 365 for Finance and Operations . After all that preparation is done, you are ...read more
Image may be NSFW.
Clik here to view.

FlushAll catches in ax 2012

server public static void FlushAll() { Args args; // Leave the "args" as null will skip the info messages normally shown when using menu items. SysFlushAOD::main(args); SysFlushData:...(read more)Image may be NSFW.
Clik here to view.

Group Names to be Avoided in SysOperation Framework Data Contract

Hello AX World, Data contract is one of the essential parts of SysOperations framework. Based on the groups and data members in the contract a dialog is automatically built. Dialog groups are defined by...(read more)Image may be NSFW.
Clik here to view.

Modern POS installation on Windows Laptop | D365 for Retail

Hi Guys, It’s been a long time since I have posted any blog. So, here is the first blog on D365 for Retail. I know I am very late on any blog on D365 but “ Better late than Never “. ...(read more)Image may be NSFW.
Clik here to view.

No Developer Required – Adding Custom Fields in D365FO

No Developer Required – Adding Custom Fields in D365FO A common request from Dynamics 365 for Finance & Operations users is to add new custom data fields within various forms, to allow them to track additional data for their business needs ...read more
Image may be NSFW.
Clik here to view.

COC : try/catch/finally

In D365 F&O Platform Update 21 Microsoft has finally made it possible to use try/catch/finally in chain-of-command methods around the next statement So, this construct is now available: { // <...(read more)Image may be NSFW.
Clik here to view.

D365 Retail Get Sales Transaction

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Runtime.Extensions.TransactionTriggers { using System; using System...(read more)Image may be NSFW.
Clik here to view.

Synchronization of contacts with Microsoft Outlook

Have you ever noticed the functionality that allows you to synchronize your contacts with Outlook from MSDyn365FO ? Well in this post I will show you step by step the different bugs encountered and of...(read more)Image may be NSFW.
Clik here to view.

Hardware station installation and configuration | D365 for Retail

Hi Guys, Hope you are RetailDAXing. You might have read my earlier blog on Modern POS Installation on Windows Laptop .  In this blog, I would like to give you a brief walk-through on the installation and...(read more)Image may be NSFW.
Clik here to view.

How to measure the performance of the Dynamics AX 2012 forms

When users complain about the performance of the system, sometimes it’s a challenge to measure the performance of the forms. If you want a quick measurement for what forms a user is using in the AX Client and tracking the form events triggered in the form (open, close), at what time, computer name, duration in...
Image may be NSFW.
Clik here to view.

MSDyn365FO Formula: Co-product & By-product. Batch attributes. Batch orders. Sponge cake example

In this blog post, I will try to go over Formulas, Co-Products, and By-Products in Microsoft Dynamics 365 for Finance and Operation using Sponge cake production as an example. We will go through the following...(read more)Image may be NSFW.
Clik here to view.

MSDyn365FO: Purchase order reapproval within Change management functionality

Recently, I have got a question regarding Change management and I understood that I didn’t fully cover this functionality here –  D365 Change management. So, in this blog post, I will try to review...(read more)Image may be NSFW.
Clik here to view.

D365Tour Press Review – October 2018

D365Tour Newsletter - October 2018 Cloud Volkswagen and Microsoft partner to create new Automotive Cloud Microsoft Dynamics 365 Extend and integrate Dynamics 365 for Talent...(read more)Image may be NSFW.
Clik here to view.
Viewing all 17314 articles
Browse latest View live


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