Category: Dynamics 365 F&O Blog

No internet connection found. please verify that your internet connection is available AX2012 CU 13 updates

Applying CU 13 updates yields No Internet Connections Available Recently while trying to apply an update one of our AX 2012 R3 environment, I ran across a “No internet available” when running the AxUpdate installer. The internet connection was most certainly available on this server. I verified this by running a browser and pinging outside sources…

Desterilize API response and adding List of object into table X++

try { ttsbegin; { Microsoft.Dynamics.Ax.Xpp.List dataList = new Microsoft.Dynamics.Ax.Xpp.List(Microsoft.Dynamics.Ax.Xpp.Types::Record); Microsoft.Dynamics.Ax.Xpp.List itemList = new Microsoft.Dynamics.Ax.Xpp.List(Microsoft.Dynamics.Ax.Xpp.Types::Record); Microsoft.Dynamics.Ax.Xpp.ListIterator dataListIterator; Microsoft.Dynamics.Ax.Xpp.ListIterator itemListIterator; Microsoft.Dynamics.Ax.Xpp.ListIterator piovttIterator; BIAPISetup _apiSetup; select firstonly _apiSetup order by _apiSetup.RecId desc ; date requestDate; str requeststr; int numofdays; BIInventCountsContracrt _inventCountsContracrt= new BIInventCountsContracrt(); BIInventCountsData _inventCountsData= new BIInventCountsData(); BIInventCountItemData _inventCountItemData= new BIInventCountItemData(); BIBranchData _branchData= new BIBranchData(); BIInventCountPivotData _piovtData= new…

D365 : MULTI-SELECT LOOKUP FOR SSRS REPORT DIALOG

WRITTEN BY MUHAMMADANASKHANDECEMBER 12, 2014 Overview: In this post we’ll learn how to build multi-select lookup for SSRS report dialog. We’ll create an RDP report with an AutoDesign layout. Controller will be used to run the report. An output menu item will be created to point to the controller class. Each AOT element involved will be…

Severity Code Description Project File Line Suppression State Error An error occurred while deploying the report EEMCVendInvoiceDocument.ReportMY, EEMCModel. This might be because the SQL Server Reporting Services has not been installed, or is not configured correctly. D365

You probably renamed your VM. Open “Reporting Services Configuration Manager” (C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft SQL Server 2016\Configuration Tools). Click on the database icon on the left, and click on change database -> Choose an existing database, you will be prompted to connect to the database server and in the Server Name type your new VM’s name. Then…

Fix Certificate Issues on Development Machines D365fo

  Run Command: Set-Location -Path “cert:\LocalMachine\My” $OldCert = (Get-ChildItem -Path 43082FE50B4D02562C89EA728B2363C598E84886) New-SelfSignedCertificate -CloneCert $OldCert -NotAfter (Get-Date).AddMonths(999)   change 43082FE50B4D02562C89EA728B2363C598E84886 with your “thumbprint number”   get thumbprint  with this command Get-ChildItem -path Cert:\LocalMachine\My | Where {$_.NotAfter -lt $(get-date).AddMonths(2)} | Sort NotAfter | Format-Table Subject, Thumbprint, NotAfter     reboot server

DMF Metadata sample

<?xml version=”1.0″?> -<edmx:Edmx Version=”4.0″ xmlns:edmx=”http://docs.oasis-open.org/odata/ns/edmx”> -<edmx:DataServices> -<Schema Namespace=”Microsoft.Dynamics.DataEntities” xmlns=”http://docs.oasis-open.org/odata/ns/edm”> -<EntityType Name=”Customer”> -<Key> <PropertyRef Name=”CustId”/> </Key> -<Property Name=”CustId” Nullable=”false” Type=”Edm.Int32″> <Annotation String=”Customer Id” Term=”Microsoft.Dynamics.OData.Core.V1.LabelId”/> -<Annotation Term=”Microsoft.Dynamics.OData.Core.V1.AXType”> <EnumMember>Microsoft.Dynamics.OData.Core.V1.AXType/Int32</EnumMember> </Annotation> </Property> -<Property Name=”LocationName” Type=”Edm.String”> <Annotation String=”Location Name” Term=”Microsoft.Dynamics.OData.Core.V1.LabelId”/> -<Annotation Term=”Microsoft.Dynamics.OData.Core.V1.AXType”> <EnumMember>Microsoft.Dynamics.OData.Core.V1.AXType/String</EnumMember> </Annotation> </Property> -<Property Name=”State” Type=”Edm.String”> <Annotation String=”State” Term=”Microsoft.Dynamics.OData.Core.V1.LabelId”/> -<Annotation Term=”Microsoft.Dynamics.OData.Core.V1.AXType”> <EnumMember>Microsoft.Dynamics.OData.Core.V1.AXType/String</EnumMember> </Annotation> </Property> -<Property Name=”CustGroup” Type=”Edm.String”> <Annotation…