Skip to main content

#MSDyn365BC 2020 Wave 2 - Data Audit System Fields.

Hi Readers,

In this series of articles we will discuss about what's new in the product with Business Central 2020 Wave 2.

With Business Central 2020 Wave 2 (V17), Microsoft have added Data Audit System Fields in all Tables.

In this article we will understand what that means and how developers can utilize these fields with AL Programming.

#MSDyn365BC #BusinessCentral

With all tables, it means all - 

  • Base Microsoft Tables.
  • All Extension Tables.
  • Temporary Tables.
What are Audit System Fields added in every tables -
  • SystemCreatedBy
  • SystemCreatedOn
  • SystemLastModifiedBy
  • SystemLastModifiedOn



CreatedBy or ModifiedBy are GUID - Why?

When we create a New user in Business Central, a unique GUID is assigned to the user. 

GUID will never change for the use in Business Central. 

As a developer you can actually set a Lookup value based on GUID.


What These Fields are used for?
  • Used for Audit purpose. 
  • User cannot manually modify any of the audit Fields.
  • Developers cannot assign/modify values to any of the audit fields.
  • Platform sets these values.
  • Audit Fields cannot be imported with configuration packages.
How these Values are assigned?
  • After all onbefore[Modify|Insert] Events.
  • After the Modify/Insert Triggers.
  • Before all onafter [Modify|Insert] Events.
When New Records are Inserted?
  • SystemCreatedBy and SystemCreatedOn are populated with Values.
  • Fields SystemLastModifiedBy and SystemLastModifiedOn will be same.
When Records are Modified?
  • SystemLastModifiedBy & SystemLastModifedOn are updated.
  • No Impact on SystemCreatedBy and SystemCreatedOn.
What is there for Developers?
  • Developers can use these fields to filter records.
  • These Fields can be added in the page for user visibility.

Developer Usage - Example?

Example 1 - Add Fields in Page using Page Extension.



Example 2 - Use System Audit Fields in the code to filter Records.


Stay connected, We will discuss more about new features in product and how to use it.

Let me know your views as comment to this article.

Regards,
Saurav Dhyani
https://www.sauravdhyani.com/

Comments

Popular posts from this blog

Dynamics NAV - All that you need to know about MenuSuites.

Hi Readers, This article is based on a request from a blog reader who wanted to understand about MenuSuite in Dynamics NAV. If you have started working with Business central with AL Code then it does not apply to those releases but if you are interested go ahead. Let's start with Future - In Latest and greatest version of product MenuSuite are obsolete and no longer used. So this article applies if you want to learn about C/AL MenuSuite.

How to Set Up NavUserPassword Authentication in Business Central.

Hi Readers, In this article we will discuss steps to Setup NAVUserPassword in Business Central on-prem. NavUserPassword is an authentication method that's handled by Business Central Server, but isn't based on Windows users or Active Directory. Each user is set up with a username and password that's configured inside Business Central only. The user is prompted for username/password credentials when they start the client. #msdyn365bc, #credentialtype

Microsoft Dynamics NAV 2016 - How to Configure Phone Client.

Hi All, In this article we will discuss how we can connect Microsoft Dynamics NAV 2016 with New Client Launched i.e. Phone Client. This Article Contain Steps for a Android Phone as I have Only Android Phone. I am doing it having all tiers on my windows 8 machine, steps remain same for multiple servers but issues might be different. What we Need (Other what we discuss in this article) -  The Service Tier should be on Public IP . Some of the Data-card does not Provide you Public IP. check it for sure.