How to write COC for different elements syntax

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>) Two know more about COC follow this blog Chain Of Command For Form DataSource – Dynamics […]

How to use Chain of Commands in D365 F&O

Hi All, In D365 F&O there is a new concept called Chain of commands introduced. You can use this instead of Eventhandler concept. Advantages and use of chain of command is shown below. You can use public and protected methods of base class without using pre-post event handlers. You can also access public and protected […]