Skip to main content

Posts

Showing posts with the label Dynamics ax

Provide print from D365Fo to printer using Network printers configuration

In D365 Finance and Operations many times we want to print some reports or invoices directly to system connected printer but it's not possible for the D365fo environment to print directly without authenticating your device and connection with your printer and system. So make the trusted connection between your printer and system network printer configuration comes in the picture. So in this blog, we will see how to make configuration for Network printer and provide print directly from D365 Finance and Operations and after following all the steps your printer will be enlisted in network printers section. Navigate to Network printers. After logging into your finance and operations environment navigate to Modules>>Organization administration>>Setup>>Network printers  as follows. Download document routing agent installer and install it. Now on the top side navigate to the application section and click on Download document routing agent. After downloading the appl...

Develop Number Sequence for custom module In D365 Finance and Operations

In Finance and Operations system provide you unique number feature for new record that has been created known as Number Sequence.In most of the cases it is provided by system wherever it is necessary,and it also possible to use existing number sequence using environment only. When you create new module there you might need to setup new number sequence exclusive for that module.In such cases we might need to consider custom number sequence development,so in this blog we will see how to achieve that. In D365 Fo number sequence development is same as that of Ax 2012 but instead of over layering we have to achieve that using extension.Following diagram will help you to get overview of development. following are the steps which need to be performed and screenshots are also there for better understanding. Steps:- 1.        Create an extension of NumberSeqModule Base Enum and add a new element and name it with our Module name and label as well...

Set form control access via security role in D365 Finance

In some of the cases instead of providing security to whole form we need it for particular form control.So this blog will help you with providing access to form control via security roles.If you want to know more about security roles you can use my previous  blog . First of all we need form control where we need to set some of the properties as follows. In our case we are using laid off button as shown Now select the button and press F4 for its properties and set needed permision to manual as follows Now in your desired security privilege you can either directly set form control permissions or Entry Points. For form control permission method right click on form control permission and select new form and after that set name property to your desired form (Hcmworker in our case) as follows Now right click on your form and select New control option as follows and set control name and permission for it as follows For Entry point method you need first need to add ...

Create security role in D365 Finance and operation

In D365 Finance and Operations when you need to provide and restrict users from a certain operation you can make use of security roles. You can create security roles from Finance and operations environment itself or from its development tool i.e Visual Studio. In this blog, we are going to create a security role in Visual Studio as follows. Create privilege  First of all we need to create privilege as follows now we need to add new entry point and set  object type in our case display menu item from properties Now add object name(display menu item  name) as follows   create role Now we need to create role where above created privilege will be needed create new security role  as follows now we need to add new privilege in role as shown And from properties select privilege which we have created in previous step Create Duty Now we have to create new duty and assign previously created privilege in its properties as sho...

Develop Custom Workflow:Counting Journals workflow

In this blog, you will learn how to develop a custom workflow that is not present out of the box in D365 Finance. For this blog I’m creating a workflow for Counting Journal ( Inventory management>>Journal Entries>>Item Counting>>Counting ) because there is no such workflow for inventory management module. The followings are steps that are to be followed. Steps:- 1.        Create a base Enum for Document Status 2.        Create a table extension and add Enum to table 3.        Add document status field to form extension 4.        Create query 5.        Create workflow category 6.        Create a workflow type 7.        Now add can submit workflow and updateworkflow methods to tables class extension 8.        Upda...