Skip to main content

Posts

Showing posts with the label datasource

How to restrict auto filter due to dynamic link in axapta form

If you have created a Form and it is automatically filtering your Datasource because of the Dynalinks which is created automatically and dynamically,To solve that issue you can use below code. Test_DS.query().dataSourceNo(1).clearDynalinks(); You can call code on init method of form. Other way you can use below. QueryBuildDatasource qbds; ; qbds = this.query().dataSourceTable(tablenum(MyTableName)); qbds.clearDynalinks();

Question and answer on Ax workflow in axapta 2009

1. Which application element is used to define to which module a workflow is applicable? ( ) Workflow template (•) Workflow category ( ) A field in the workflow configuration ( ) SalesTable 2. Which type of AOT element needs to be created to specify which tables will be affected by a workflow? ( ) Extended data type ( ) Class ( ) Form (•) Query 3. There are three types of providers that define what rules the workflow can follow. What are they? (√) Participant provider (√) DueDate provider (√) Hierarchy provider ( ) Internet provider 4. Which two properties on a form data source need to be modified to allow the form to use a workflow? ( ) WorkflowTemplate (√) WorkflowEnabled ( ) WorkflowDocument (√) WorkflowDatasource