Chain Of Command Form DataSource Field

Share this:

In the previous article, I explained what Chain Of Command is, and how to use it in Microsoft Dynamics 365. I provided a basic example of Chain of Command, and explained what pieces are required. In this article we will look at an example of how to implement Chain Of Command Form DataSource field methods.

Objects That Can Use Chain Of Command

As a review, there are several different objects in Microsoft Dynamics 365 that can use Chain Of Command. I will list the most common here.

  • Classes
  • Tables
  • Forms
  • Datasource on a form.
  • Data field on a form.
  • Control of a form.
  • Data entities

Chain of Command Rules

Before providing an example of using Chain of Command for form datasource field methods, I wanted to first review the requirements that all Chain Of Command classes must follow. If you do not follow these rules, the compiler will not recognize your new class as a Chain of Command class.

  • The name of the new class you create must end with the text ‘_Extension’.
    Pro Tip: Because classes and forms and tables are often named the same thing, and each can be modified using Chain of Command, I have found it helpful to put the object type in the name of the Chain of Command class. This is not required, however, it will make your code more readable. I recommend using a format like this: <BaseObjectName>_<ObjectType>_Extension
  • The keyword ‘final’ must be used in the class definition line.
  • The class needs to have the attribute
    [ExtensionOf(classStr(<NameOfBaseObject>))]
    The “classStr” text above will change depending on the type of base objecting you are extending. I will explain more later.
  • Add the method definition the exact same way it appears in the base class.
  • Your code must call the base class’s method inside your extension method using the ‘next’ keyword. Using the above example you need to have this line.
    var s = next doSomething(arg);

Using The Right Global Function

All of the rules above apply for all uses of Chain Of Command. However, the function you use within the ‘ExtensionOf’ method above will be different based on the type of object you are extending.

While you could enter a string inside the ExtensionOf function, this would not be following best practice. The reason why we want to use a global function is because if the name of the base object ever changes name, using a global functional will cause a compile error to return. This will inform the developer that they need to make a change. Whereas if you use a string directly, you will not get a compile error, and your Chain of Command class will no longer work.

Let’s go through each type of global function we can use inside of the ExtensionOf function.

  • When extending a class, use classStr(<NameofBaseClass>)
  • When extending a table, use tableStr(<NameOfBaseTable>)
  • In the case of a form, use formStr(<NameOfBaseForm>)
  • When extending a form Datasource use formDataSourceStr(<NameOfBaseForm>,<NameOfDataSource>)
  • When extending a form Data field, use formDataFieldStr(<NameOfBaseForm>,<NameOfDataSource>,<NameOfField>)
  • For a form control, use formControlStr(<NameOfBaseForm>,<NameOfControl>)
  • When extending a data entity, use tableStr(<NameOfBaseDataEntity>)

Extend Form DataSource field methods

Do you have code that you want to run when the value of a field on a form is changed? One the most common methods you might want to add to a Form DataSource field method, is the ‘modified’ method. If you need this code on a base Microsoft form, you need to use Chain Of Command to add this functionality to the method.

Typically putting code on the datasource field is better than putting code directly on the control. This way if the same field is used in multiple places on the form, all of them will call this same method.

[ExtensionOf(formDataFieldStr(SalesTable, SalesLine, ItemId))]
final class SalesTable_SalesLineItemId_Extension
{
    public void modified()
    {
        FormDataObject formDataObject = any2Object(this) as FormDataObject;
        FormDataSource formDataSource = formDataObject.datasource();
        SalesLine salesLine;

        next modified();

        salesLine = formDataSource.cursor();
        salesLine.Name = InventTable::find(salesLine.ItemId).itemName();

    }
}

Conclusion

Anytime you have code in a base Microsoft form DataSource field, you can use Chain Of Command to add additional code before or after the call to the base method. You still always have to call the base method. But you can change how the method works.

  • When you put code before calling the base method, you can change the values that are sent in as parameters to the base method. This can cause different branches inside the base method to be run or not run.
  • After receiving the response value from the base method you can change this value before returning it to the calling method. This can allow you to change what code paths the calling method takes.
  • By adding code after the call to the base method, you can add additional validation, functionality, and actions that should occur anytime the method is called.
Peter Ramer
Peter Ramer is a part of the Managed Application Services team at RSM working on Microsoft Dynamics 365. He focuses on the Retail and Commerce industries. When he is not solving problems and finding ways to accelerate his clients' business, he enjoys time with his three kids and amazing wife.

Share this:

7 thoughts on “Chain Of Command Form DataSource Field

Add yours

  1. Hi Peter Ramer

    Thank you for the content and videos on MS AX it is really helpful to me.
    I am a beginner level in AX and your giving really good explanation in your videos. I watched your videos on chain of command(COC)the content is really good and as a beginner I am requesting you to please make a video on coding part(COC)with really in depth explanation to point to point of code. I am unable few lines of code for example getting “FormDataObject” and getting currently selected records in “formcontrol” and “FormDataSourceField”.if possible please make a video on SSRS reports with in depth explanation of coding .Please consider my request.

  2. Nice explanation.

    I have a query where I want to call a custom method written on form datasource from form data Field (datasource field) modified method.

    I have tried different ways but resulting in an error.

    Appreciate if there is any solution for this.

    1. You can try writing _ds.();
      See if that helps. Basically add underscore then the letters ds to the end of the datasource name, then add a dot. I think that should show you all of the methods on the datasource specifically.

Leave a Reply

Your email address will not be published. Required fields are marked *

Proudly powered by WordPress | Theme: Baskerville 2 by Anders Noren.

Up ↑