This content demonstrates how to obtain the financial dimension value owner in X++ for Dynamics 365 for Finance and Operations. It provides a solution using the "ATLAS_LedgerDimensionHelper" class to retrieve the owner of the dimension attribute value. The "getDimensionAttributeValueOwner" method retrieves and displays the financial dimension value owner in an inquiry screen.
D365: How to filter procurement categories in X++
This X++ code demonstrates how to filter procurement categories in Dynamics 365 for Finance and Operations. The business requirement is to only allow tangible procurement categories to be selected. The provided solution uses a custom class extension to filter and display only tangible categories when selecting procurement categories or adding products to a purchase order line.
D365: Get PO total amount in X++
In Dynamics 365 for Finance and Operations, the business requirement to display the total amount of a purchase order can be met using X++ code. By extending the PurchTable class, the getPurchTotalAmount method can be implemented to calculate and return the total dollar amount of a specific purchase order.