Microsoft Dynamics AX is one of Microsoft’s Enterprise Resource Planning software products. It is part of the Microsoft Dynamics family. The early versions (from 1.0 to 3.0) were called Axapta, while the later versions (from 3.0 SP6 to AX 2012) are called Dynamics AX. This tag refers to the successor of AX 2012, also known as Dynamics 365 for Finance and Operations.
Questions tagged [dynamics-365-operations]
254 questions
0
votes
1 answer
SCM missing reference
How can I find the package necessary to reference in my model por a returned type like
smmActivityPurpose
Thank you
I compare the packages referenced in the original form, but when I create a new one and use the same data, get the following…

Oscar Perez
- 111
- 1
- 5
0
votes
0 answers
Bad request when posting to OData Data Entity in Dynamics 365
I've created a public Data Entity in dynamics with the following fields:
I keep getting a bad request response, but I'm not sure why.
I've tried to make a POST request in two ways:
1.
HireAction hireAction = new HireAction() { CompanyName = "DEMF",…

Kai
- 732
- 1
- 7
- 23
0
votes
0 answers
Electronic reporting automation and bank reconciliation (BAI2)
I have to submit BAI2 files for bank reconciliation that are coming in from a logic app into the DMF. I have found that the DMF is no longer used, but I cannot change the way the file comes in as that is handled by an external team. I have created…

rjv
- 1,058
- 11
- 29
0
votes
0 answers
How to pass a datasource of a tempTable data to a class
I have a form with a grid of a tempTable. One of the columns in the grid displays the 'existsAlready' property:
FM_MovieTemp movie = ds.getFirst(1);
while (movie)
{
if (movie.existsAlready)
{
existingMovies = true;
}
…

Kai
- 732
- 1
- 7
- 23
0
votes
1 answer
Using InMemory table as a form datasource in Dynamics 365 f&o
I'm obtaining data from an external service and inserting it into an inMemory table (Table_movieTemp), which I use as a datasource on a form (Form_MovieSearch_ds):
[FormControlEventHandler(formControlStr(Form_MovieSearch, FormCommandButtonControl1),…

Kai
- 732
- 1
- 7
- 23
0
votes
0 answers
Create a new record in Table/Form from FastTab
Im basically trying to create a new record, on my custom created table and form, from a fast tab.
Right now basically what it does, is that it basically edits the existing record instead of creating a new one.
As you can see in the picture, what it…

Alvaro G
- 1
- 1
0
votes
0 answers
Is there a way to mass delete number sequences in D365?
I'm using Odata to delete mass lines of number sequences in D365 but I'm getting this error message...The deletion of a row in data set SequenceV2Tables was not published. Error message: 'Delete failed for table row of type…

nlas
- 5
- 3
0
votes
0 answers
Call function in C# lib that return in IEnumerable in X++ gives unclear error
As practice assignment I made a simple C# project which calls an external API, deserializes the resulting JSON to an IEnumerable of my class and sends it back:
public static IEnumerable CallRestService(string uri, string method)
{
…

Kai
- 732
- 1
- 7
- 23
0
votes
0 answers
Create custom entity for export SecurityUserRole and SecurityUserRoleCondition Dynamics 365 fo
i'm trying to create a new Entity for export info about the user roles , i know there is an entity that exports the users but there isn't an entity in the system for export the table that has the relation between user roles and the legal entities…

fracedo
- 127
- 3
- 13
0
votes
1 answer
Consuming API by sending JSON data format to Third party app using bearer token Authentication by x++ code D365FO
We got an error "The remote server returned an error: (400) Bad Request." while consuming API with third party app. below is my code;
class JSONDeSerialization
{
///
/// Runs the class with the specified arguments.
///…

Abhilash Abhi
- 19
- 4
0
votes
0 answers
The assembly 'Dynamics.AX.ABC, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' failed to load
I'm getting below error after full-build in VSTS of project MS Dynamics365 F&O:
"Severity Code Description Project File Line Category Source Suppression State
Error The assembly 'Dynamics.AX.ABC, Version=0.0.0.0,…

Abhilash Abhi
- 19
- 4
0
votes
1 answer
In x++, How can I sum the numerical values of the different customers I have chosen?
How can I sum the numerical values of the different customers I have chosen?
For example:
e006-M000021 total amount = 1,605.00+1605.00+1605.00+(-96.00)+...
e006-M000022 total amount = 5,964.85+(-1,075.00)+5.541.60+...
I will use the result as…

Hakan Çelik
- 17
- 6
0
votes
2 answers
How to get Job ID from Dynamics 365 Finance and Operations of Recurring Integration Job using Rest API call
I want to fetch job details from Dynamics 365 Finance and Operations for that I need Job Id I am unbale to find out way how to get Job Id from Dynamics 365 Finance and Operations using any Rest API

DnyaneshSurya
- 187
- 1
- 1
- 14
0
votes
1 answer
Why EnvDTE.ProjectItem.FileCodeModel is Null on Dynamics 365 in VS 2017 project
I am writing code to get the CodeElements from .xpp file in D365 project, but FileCodeModel value is always null
foreach (Project project in applicationObject.Solution.Projects)
{
var projectItems =…

user3157708
- 11
- 3
0
votes
0 answers
How to get all legal entities projects data with system admin access through D365 REST API
Dynamics365 F&O : When trying to pull project entity data from D365 Rest API Projects Data API returning only the data which is associated with user legal entity instead of returning all projects of legal entities data.
Note : Logged in as Sys…

Theja Pachipala
- 1
- 5