Dynamics User Group
Dynamics User Group
  • Site
  • User
  • Site
  • Search
  • User
Martin Dráb

Martin Dráb

Blog Posts
  • Profile
  • Connections
  • Activity
  • Questions
  • Blog Posts
  • Groups
  • Likes
  • Mentions
  • Achievements
  • More
  • Cancel
  • Goshoom.NET Dev Blog: Simple metadata query in Powershell (D365FO)

    Martin Dráb
    Martin Dráb
    If I need to extra metadata of a D365FO application, my preferred way is the new metadata API . But sometimes the requirement is so simple that it’s sufficient to query source XML files directly. For example, this all what’s needed to get a list of…
    • 2020-10-30
    • Mirror post
    • Dynamics 365
    • Dynamics Community Syndication
    • D365FO
    • Powershell
    • Metadata
    • 30 views
    • 0 comments
    • 2 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Simple metadata query in Powershell (D365FO)

    Martin Dráb
    Martin Dráb
    If I need to extra metadata of a D365FO application, my preferred way is the new metadata API . But sometimes the requirement is so simple that it’s sufficient to query source XML files directly. For example, this all what’s needed to get a list of…
    • 2020-10-30
    • Mirror post
    • Powershell @en
    • Dynamics 365
    • Dynamics Community Syndication
    • D365FO
    • Metadata
    • 231 views
    • 0 comments
    • 2 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Finding display methods in D365FO

    Martin Dráb
    Martin Dráb
    Somebody asked in the Community forum for examples of display methods in views in the standard D365FO application. It’s not necessary to remember any concrete examples – finding all such methods is very simple. The right tool for this purpose is Metadata…
    • 2020-8-28
    • Mirror post
    • Dynamics 365
    • View
    • Dynamics Community Syndication
    • Visual Studio
    • D365FO
    • 16 views
    • 0 comments
    • 4 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Finding display methods in D365FO

    Martin Dráb
    Martin Dráb
    Somebody asked in the Community forum for examples of display methods in views in the standard D365FO application. It’s not necessary to remember any concrete examples – finding all such methods is very simple. The right tool for this purpose is Metadata…
    • 2020-8-28
    • Mirror post
    • Dynamics 365
    • Dynamics Community Syndication
    • view @en
    • D365FO
    • visual studio @en
    • 359 views
    • 0 comments
    • 4 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Colored tabs in Visual Studio

    Martin Dráb
    Martin Dráb
    Do you have many tabs in Visual Studio with designers and code editors and do you struggle to make sense of them? It’s not surprising – we often work with many things at once and some elements even have same names (e.g. VendTable table and form), which…
    • 2020-8-12
    • Mirror post
    • Dynamics 365
    • Dynamics Community Syndication
    • Visual Studio
    • D365FO
    • EN
    • 14 views
    • 0 comments
    • 5 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Colored tabs in Visual Studio

    Martin Dráb
    Martin Dráb
    Do you have many tabs in Visual Studio with designers and code editors and do you struggle to make sense of them? It’s not surprising – we often work with many things at once and some elements even have same names (e.g. VendTable table and form), which…
    • 2020-8-12
    • Mirror post
    • Dynamics 365
    • Dynamics Community Syndication
    • D365FO
    • visual studio @en
    • EN
    • 341 views
    • 0 comments
    • 5 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: FormObservableLink works in data source extensions

    Martin Dráb
    Martin Dráb
    FormObservableLink class is useful for refreshing display and edit methods in D365FO. You create an instance variable of FormObservableLink type in a form, initialize it and call its observe() method in display/edit methods that you need to refresh on…
    • 2020-5-22
    • Mirror post
    • Dynamics 365
    • Dynamics Community Syndication
    • D365FO
    • AX '7'
    • EN
    • 15 views
    • 0 comments
    • 8 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: FormObservableLink works in data source extensions

    Martin Dráb
    Martin Dráb
    FormObservableLink class is useful for refreshing display and edit methods in D365FO. You create an instance variable of FormObservableLink type in a form, initialize it and call its observe() method in display/edit methods that you need to refresh on…
    • 2020-5-22
    • Mirror post
    • ax 7 @en
    • Dynamics 365
    • Dynamics Community Syndication
    • Caching
    • observer
    • 478 views
    • 0 comments
    • 8 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: FormObservableLink works in data source extensions

    Martin Dráb
    Martin Dráb
    FormObservableLink class is useful for refreshing display and edit methods in D365FO. You create an instance variable of FormObservableLink type in a form, initialize it and call its observe() method in display/edit methods that you need to refresh on…
    • 2020-5-22
    • Mirror post
    • 381 views
    • 0 comments
    • 8 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: ‘is’ and ‘as’ operators with .NET types

    Martin Dráb
    Martin Dráb
    I recently ran into an unfortunate limitation of .NET Interop from X++ (in D365FO). I wanted to check if an X++ object is of a given type, nevertheless the type used for the variable declaration was a .NET interface. Here is an example: using Microsoft…
    • 2020-5-6
    • Mirror post
    • .NET Interop
    • Dynamics 365
    • Dynamics Community Syndication
    • D365FO
    • EN
    • 12 views
    • 0 comments
    • 8 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: ‘is’ and ‘as’ operators with .NET types

    Martin Dráb
    Martin Dráb
    I recently ran into an unfortunate limitation of .NET Interop from X++ (in D365FO). I wanted to check if an X++ object is of a given type, nevertheless the type used for the variable declaration was a .NET interface. Here is an example: using Microsoft…
    • 2020-5-6
    • Mirror post
    • Dynamics 365
    • Dynamics Community Syndication
    • D365FO
    • EN
    • 414 views
    • 0 comments
    • 8 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Exception handling in PU31

    Martin Dráb
    Martin Dráb
    In 2018, I wrote the blog post Throwing managed exceptions from X++ in D365FO , where I pondered upon how throwing proper exceptions objects in X++ would be beneficial. This is still true. I also showed a proof of concept how it can be done despite the…
    • 2020-4-30
    • Mirror post
    • exceptions
    • .NET Interop
    • Dynamics Community Syndication
    • D365FO
    • EN
    • 12 views
    • 0 comments
    • 8 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Exception handling in PU31

    Martin Dráb
    Martin Dráb
    In 2018, I wrote the blog post Throwing managed exceptions from X++ in D365FO , where I pondered upon how throwing proper exceptions objects in X++ would be beneficial. This is still true. I also showed a proof of concept how it can be done despite the…
    • 2020-4-30
    • Mirror post
    • exceptions
    • Dynamics Community Syndication
    • D365FO
    • .NET Interop @en
    • EN
    • 354 views
    • 0 comments
    • 8 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Compare records in code

    Martin Dráb
    Martin Dráb
    When saving a record, I had to check which fields had changed and react in a special way if only certain fields (and not any other) changed their value. I could iterate all fields and compare their values in two table buffers (the original and the…
    • 2020-3-11
    • Mirror post
    • AX 2012
    • Dynamics 365
    • Dynamics Community Syndication
    • D365FO
    • AX '7'
    • 11 views
    • 0 comments
    • 10 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Compare records in code

    Martin Dráb
    Martin Dráb
    When saving a record, I had to check which fields had changed and react in a special way if only certain fields (and not any other) changed their value. I could iterate all fields and compare their values in two table buffers (the original and the…
    • 2020-3-11
    • Mirror post
    • Dynamics 365
    • Dynamics Community Syndication
    • ax 2012 @en
    • D365FO
    • EN
    • 534 views
    • 0 comments
    • 10 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Thoughts on element prefix vs. suffix

    Martin Dráb
    Martin Dráb
    When I read Evaldas Landauskas’s blog post Development guidelines: Prefix Vs. Suffix , I thought I would write a comment below the post and share a few ideas, but then I decided that it’d be better to write my own blog post. Here I have a much better…
    • 2020-2-4
    • Mirror post
    • naming conventions
    • best practice
    • Dynamics Community Syndication
    • D365FO
    • AX '7'
    • 6 views
    • 0 comments
    • 11 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Thoughts on element prefix vs. suffix

    Martin Dráb
    Martin Dráb
    When I read Evaldas Landauskas’s blog post Development guidelines: Prefix Vs. Suffix , I thought I would write a comment below the post and share a few ideas, but then I decided that it’d be better to write my own blog post. Here I have a much better…
    • 2020-2-4
    • Mirror post
    • naming conventions
    • ax 7 @en
    • dynamics ax @en
    • Dynamics Community Syndication
    • best practice @en
    • 506 views
    • 0 comments
    • 11 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Security API

    Martin Dráb
    Martin Dráb
    The product that used to be called Microsoft Dynamics 365 for Finance and Operations (I truly don’t know how I should call it these days) allows defining security elements both by developers (delivered together with code) and by power users though GUI…
    • 2020-2-3
    • Mirror post
    • Dynamics 365
    • Dynamics Community Syndication
    • Security
    • D365FO
    • AX '7'
    • 9 views
    • 0 comments
    • 11 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Security API

    Martin Dráb
    Martin Dráb
    The product that used to be called Microsoft Dynamics 365 for Finance and Operations (I truly don’t know how I should call it these days) allows defining security elements both by developers (delivered together with code) and by power users though GUI…
    • 2020-2-3
    • Mirror post
    • ax 7 @en
    • Dynamics 365
    • Dynamics Community Syndication
    • Security
    • D365FO
    • 538 views
    • 0 comments
    • 11 months ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Beta exam MB-500

    Martin Dráb
    Martin Dráb
    Today I took the beta exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer ; I think it’s going to be made generally available on January. I was already planning to take it when I received an email with a significant discount, therefore…
    • 2019-11-20
    • Mirror post
    • Certification
    • Dynamics 365
    • Dynamics Community Syndication
    • Exam
    • EN
    • 9 views
    • 0 comments
    • over 1 year ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Beta exam MB-500

    Martin Dráb
    Martin Dráb
    Today I took the beta exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer ; I think it’s going to be made generally available on January. I was already planning to take it when I received an email with a significant discount, therefore…
    • 2019-11-20
    • Mirror post
    • Certification
    • Dynamics 365
    • Dynamics Community Syndication
    • Exam
    • EN
    • 589 views
    • 0 comments
    • over 1 year ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Calling async method from X++

    Martin Dráb
    Martin Dráb
    There is a trend in the .NET world to make time-consuming calls asynchronous, to prevent applications from getting blocked when waiting for a response from a web service and things like that. Many existing APIs were enhanced with asynchronous variants…
    • 2019-8-12
    • Mirror post
    • .NET
    • .NET Interop
    • Dynamics Community Syndication
    • D365FO
    • async
    • 15 views
    • 0 comments
    • over 1 year ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Calling async method from X++

    Martin Dráb
    Martin Dráb
    There is a trend in the .NET world to make time-consuming calls asynchronous, to prevent applications from getting blocked when waiting for a response from a web service and things like that. Many existing APIs were enhanced with asynchronous variants…
    • 2019-8-12
    • Mirror post
    • .NET @en
    • ax 7 @en
    • Dynamics Community Syndication
    • D365FO
    • async
    • 581 views
    • 0 comments
    • over 1 year ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Getting service operations from metadata (D365FO)

    Martin Dráb
    Martin Dráb
    When working with metadata in Dynamics 365 for Finance and Operation, the usual approach is using the MetadataSupport class . It’s a simplified interface to actual metadata classes, which is easy to use, but it doesn’t expose everything. For instance…
    • 2019-5-31
    • Mirror post
    • Dynamics Community Syndication
    • web service
    • D365FO
    • AX '7'
    • Metadata
    • 6 views
    • 0 comments
    • over 1 year ago
    • More
    • Cancel
  • Goshoom.NET Dev Blog: Getting service operations from metadata (D365FO)

    Martin Dráb
    Martin Dráb
    When working with metadata in Dynamics 365 for Finance and Operation, the usual approach is using the MetadataSupport class . It’s a simplified interface to actual metadata classes, which is easy to use, but it doesn’t expose everything. For instance…
    • 2019-5-31
    • Mirror post
    • web service @en
    • ax 7 @en
    • Dynamics Community Syndication
    • D365FO
    • Metadata
    • 795 views
    • 0 comments
    • over 1 year ago
    • More
    • Cancel
>
  • Microsoft Dynamics 365 User Groups

  • Dynamics 365 Business Central
  • Dynamics 365 Customer Engagement
  • Dynamics 365 for Finance and Operations
  • Power Platform
  • Microsoft Dynamics User Groups

  • Dynamics AX
  • Dynamics CRM
  • Dynamics NAV
  • About
  • Contact us
  • Frequently asked questions
  • Terms of use
  • Privacy policy
Copyright 1995-2021 Dynamics User Group, all rights reserved.
EU Cookie Consent