Dynamics User Group
Dynamics User Group
  • Site
  • User
  • Site
  • Search
  • User
Faisal Fareed

Faisal Fareed

Blog Posts
  • Profile
  • Connections
  • Activity
  • Questions
  • Blog Posts
  • Groups
  • Likes
  • Mentions
  • Achievements
  • More
  • Cancel
  • The AX Library: D365FO - Rotate SSL Certificates in Tier 1 environments

    Faisal Fareed
    Faisal Fareed
    If you face following error all of a sudden when accessing tier 1 environment like I faced, follow next steps in the post to get it working. The SSL certificate has been expired and requires renewal How to renew the certificate? The easiest way is to…
    • 2020-4-13
    • Mirror post
    • 821 views
    • 0 comments
    • 10 months ago
    • More
    • Cancel
  • The AX Library: D365FO - Start hierarchy approval with specific worker

    Faisal Fareed
    Faisal Fareed
    There are times when clients want to start hierarchy approval from a specific worker and not from the one who initiated the workflow and then traverse up the hierarchy. Scenario: Invoices are coming from third-party into FinOps and creating tax invoice…
    • 2019-6-20
    • Mirror post
    • Workflow
    • D365FinOps
    • D365FO
    • 554 views
    • 0 comments
    • over 1 year ago
    • More
    • Cancel
  • The AX Library: D365FO - Add new participant and type of participant to Participant workflow element

    Faisal Fareed
    Faisal Fareed
    There are times when you want to add a new type of participant other than security role participants and user group participants, this post describes the steps to take and achieve this requirement. This is the final output Let's find out how did it work…
    • 2019-6-18
    • Mirror post
    • Workflow
    • D365FinOps
    • D365FO
    • Dynamics 365 For Operations
    • 850 views
    • 0 comments
    • over 1 year ago
    • More
    • Cancel
  • The AX Library: D365FO - How not to select Fleet Management modules in package creation

    Faisal Fareed
    Faisal Fareed
    Want assurance that you never select/include fleet management modules in package creation or build all module together. Just rename the Descriptor folder from all these three locations and refresh models in VS first time to reflect the changes. <Service…
    • 2018-7-27
    • Mirror post
    • Dynamics 365 For Operations
    • 996 views
    • 0 comments
    • over 2 years ago
    • More
    • Cancel
  • The AX Library: D365FO - Get list of obsolete data entities

    Faisal Fareed
    Faisal Fareed
    Find which data entity is obsolete after every new update. Here are the steps. For example; Customers V2 data entity is obsolete with version 8.0 For developers: Type the below in the metadata search in VSTS: type:dataentityview property:isobsolete=yes…
    • 2018-7-5
    • Mirror post
    • Data entities
    • Dynamics 365 For Operations
    • 1513 views
    • 0 comments
    • over 2 years ago
    • More
    • Cancel
  • The AX Library: D365 platform update 12 (7.3): Admin access changes

    Faisal Fareed
    Faisal Fareed
    The Microsoft team did release platform update 12 for Dynamics 365 for Finance and Operations, Enterprise Edition 7.3. There have been few changes concerning accessibility (admin access on VMs). Starting with platform update 12 users do not have admin…
    • 2018-1-6
    • Mirror post
    • Dynamics 365 For Operations
    • 5021 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: Newly created data entity is not visible in data management entity list?

    Faisal Fareed
    Faisal Fareed
    If you created a new data entity and it's not visible in your data management entity list. Open Data Management workspace -> Framework parameters -> Entity Settings and hit the "Refresh Entity List" button
    • 2017-12-18
    • Mirror post
    • Data entities
    • Dynamics 365 For Operations
    • 3608 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: D365FO: How to debug a non-development and a non-production environment

    Faisal Fareed
    Faisal Fareed
    This post outlines the steps how to debug an issue which is happening in non-development or non-production environments e.g. UAT environment. !--[if !supportLists]-->1. !--[endif]-->RDP to your environment where you want to debug the issue, with this…
    • 2017-12-17
    • Mirror post
    • Debugging
    • Dynamics 365 For Operations
    • 4590 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: Read excel through X++ in D365FO

    Faisal Fareed
    Faisal Fareed
    Sample code to read an excel file, all it need file stream as a parameter.public boolean importFromExcelfiles(System.IO.Stream _stream){ OfficeOpenXml.ExcelWorksheet worksheet; OfficeOpenXml.ExcelRange &nbs...
    • 2017-11-27
    • Mirror post
    • Excel Import
    • Dynamics 365 For Operations
    • 6714 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: D365FO - Dynamics 365 Tutorials Help You Get up and Running Fast

    Faisal Fareed
    Faisal Fareed
    http://www.erpsoftwareblog.com/2017/06/dynamics-365-tutorials-help-you-get-up-and-running-fast/
    • 2017-7-6
    • Mirror post
    • Dynamics 365 For Operations
    • 4531 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: D365FO - Method wrapping and chain of command

    Faisal Fareed
    Faisal Fareed
    Another most awaiting Extensibility feature (Chain of Command) is going to come with one of the next platform updates. This enables you to call/use protected members and methods without making them hookable and using pre/post event handlers. More details…
    • 2017-7-5
    • Mirror post
    • Dynamics 365 For Operations
    • 7446 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: D365O - How to get current worker through X++

    Faisal Fareed
    Faisal Fareed
    The current user or worker could be retrieved through following code since AX 2012DirPersonUser::currentWorker()However, In Dynamics 365 for operation this has refactored to;HcmWorkerLookup::currentWorker()
    • 2017-6-8
    • Mirror post
    • AX 2012 R3
    • X++
    • Dynamics 365 For Operations
    • 5258 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: AX 2012 : Remove an XML node through X++

    Faisal Fareed
    Faisal Fareed
    Following code snippet may help you to remove an XML node from an XML message string.private str removeXMLTag(str xml){ XmlDocument doc = new XmlDocument(); XmlElement &n...
    • 2017-4-15
    • Mirror post
    • AX 2012 R3
    • X++
    • XML
    • 3731 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: AX 2012: Reading files from directory through X++

    Faisal Fareed
    Faisal Fareed
    Following code can be used to read files from the specified path. With this example, I am reading a CSV files from a directory.Class declarationclass readFilesFromDirectory extends RunBase{ FilePath filePath; &n...
    • 2017-4-11
    • Mirror post
    • AX 2012 R3
    • Read Files
    • X++
    • 2461 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: AX 2012: Create sales order with delivery address from an XML file

    Faisal Fareed
    Faisal Fareed
    Code snippet to create a sales order from an XML file.private void createSOFromFile(){ AxdSalesOrder salesOrder; AifEntityKey key; Filename fileName; ...
    • 2017-4-10
    • Mirror post
    • AX 2012 R3
    • X++
    • XML
    • 3268 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: AX 2012: Reading XML Nodes under specific tag through X++

    Faisal Fareed
    Faisal Fareed
    XML to read X++ Code For above XML structure, I will read all nodes exist within each InstructorAPIModel node. The getElementsByTagName() method of XmlDocument class can be used which returns XmlNodeList which can then be iterated to get node's values…
    • 2017-4-10
    • Mirror post
    • AX 2012 R3
    • X++
    • XML
    • 6927 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: AX 2012: Reading XML Nodes through X++

    Faisal Fareed
    Faisal Fareed
    XML to read X++ CodeXmlDocument doc;XmlNodeList xmlScriptList;XmlNodeList xmlResponseList;XmlNodeList xmlTemplateList;XmlElement nodeScript;XmlElement &n...
    • 2017-4-10
    • Mirror post
    • AX 2012 R3
    • X++
    • XML
    • 6833 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: AX 2012: Attach documents or creates notes through X++

    Faisal Fareed
    Faisal Fareed
    Recently came across a requirement to attach documents and create notes for a sales order after reading files from directories.Documents can be attached to a sales order manually from the following button. Code snippet to create notes or attach documents…
    • 2017-4-7
    • Mirror post
    • AX 2012 R3
    • Document Management
    • 6193 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: D365O - How to add financial dimension in grid

    Faisal Fareed
    Faisal Fareed
    This post outlines the steps; how to add financial dimensions (segmented control) in a grid in D365O.Let's assume we are adding new table and form for below explanation;New table contains two fields AccountType and LedgerDimension with relation to DimensionAttributeValueCombination…
    • 2017-3-18
    • Mirror post
    • Financial dimensions
    • Dynamics 365 For Operations
    • 5746 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: D365O - Import CSV data through Data entity

    Faisal Fareed
    Faisal Fareed
    Data entity is a new concept comes with D365O release where each entity related data can be accessed from a single view.A data entity is an abstraction from the physical implementation of database tables. For example, customer related data is stored in…
    • 2017-3-18
    • Mirror post
    • Dynamics 365 For Operations
    • 4540 views
    • 0 comments
    • over 3 years ago
    • More
    • Cancel
  • The AX Library: AX 2012 : Add/Remove Dynalink through X++

    Faisal Fareed
    Faisal Fareed
    DynaLinks can be removed and added between datasources on form using this code;The following code is implemented in the Click event of a button. ClearDynaLinks() will remove all existing dynaLinks [these can be seen by right click on the click > Personalise…
    • 2017-3-5
    • Mirror post
    • 6658 views
    • 0 comments
    • over 4 years ago
    • More
    • Cancel
  • The AX Library: AX 2012 - Add and Remove dynalink through X++

    Faisal Fareed
    Faisal Fareed
    DynaLinks can be removed and added between datasources on form using this code;I implemented this code on clicked method of a button on an AX form.void clicked(){ SalesQuotationLine_ds.query().dataSourceNo(1).clearDynalinks(); SalesQuotationLine_ds.query…
    • 2017-3-5
    • Mirror post
    • AX Forms
    • DynaLink
    • X++
    • 2644 views
    • 0 comments
    • over 4 years ago
    • More
    • Cancel
  • The AX Library: Microsoft Dynamics 365 for Operations - Number sequence

    Faisal Fareed
    Faisal Fareed
    Number sequence framework in there for a while with the release of AX 2012 however, with the arrival of D365 we need to make a small addition on top of what we have been doing in AX 2012.All steps remain same as summarize below to generate number sequence…
    • 2017-2-13
    • Mirror post
    • Dynamics 365 For Operations
    • 5361 views
    • 0 comments
    • over 4 years ago
    • More
    • Cancel
  • The AX Library: Microsoft Dynamics 365 for Operations - Selecting a correct form pattern - A another benchmark!!!

    Faisal Fareed
    Faisal Fareed
    Selecting an appropriate form pattern has never been that easy. https://ax.help.dynamics.com/en/wiki/how-to-select-a-form-pattern/ This explains, which form pattern will suit your requirements with examples where your to be selected form pattern has been…
    • 2017-2-9
    • Mirror post
    • Dynamics 365 For Operations
    • 3145 views
    • 0 comments
    • over 4 years ago
    • More
    • Cancel
  • The AX Library: MS D365 - Development Exam - A brief outlook

    Faisal Fareed
    Faisal Fareed
    Having passed the Microsoft Dynamics 365 Development Introduction exam (MB6-890), here are few thoughts on the exam which might help someone who is planning to appear in this exam. If you are an experienced AX developer and have worked on AX 2012 - you…
    • 2017-1-21
    • Mirror post
    • X++
    • Dynamics 365 AX7
    • AX 7
    • 2684 views
    • 0 comments
    • over 4 years 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