Questions tagged [dynamics-365-operations]

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.

254 questions
0
votes
2 answers

Two Lookups in my SysOperation UiBuilder Error

When i click my Sa_Type field that is a base enum with Vendor and Customer i want it to fill my second field called combo with all the customer or all the vendors, but this way im receiving the error RegisterOverrideMethod was called twice for the…
R Monkey
  • 131
  • 1
  • 10
0
votes
0 answers

using a TempDB table as my form data source, but the data doesn't display in the form

I am using a TempDB table as a form data source and am facing an issue where the data is not showing up in the form. Issue: I found out by debugging, linkPhysicalTableInstance in the clicked method, it did not work…
ash
  • 1
0
votes
1 answer

split full name to first ,middle and last in x++ d365fo

i want to split full name to first ,middle and last in x++ d365fo str fullName = _contracts.fullName(); // Replace any non-ASCII whitespace characters with regular spaces fullName = strReplace(fullName, '\u00A0', ' '); // Replace non-breaking…
user4833581
  • 107
  • 1
  • 3
  • 14
0
votes
0 answers

In D365 how to get by SQL script the list of Security changed by Security Configuration?

I would like to get by SQL script the list of Security changed by Security Configuration tool? My target is to identify the security changed by this tool. I tried to check the SysSecConfiguration form table, but, my fault, I didn't find any table…
ulisses
  • 1,549
  • 3
  • 37
  • 85
0
votes
0 answers

update first , middle and last name in dynamics 365 fo

i want to update first , middle and last name in dynamics 365 fo str firstname,lastname,middlename; firstname = subStr(_contracts.fullName(),1,1); middlename = subStr(_contracts.fullName(),2,2); lastname =…
user4833581
  • 107
  • 1
  • 3
  • 14
0
votes
1 answer

How to authenticate my Logic App Dynamics F&O connection with API Connection

I am working on a logic app which needs to get data from Dynamics F&O. I am using Get action for Dynamics F&O but I cannot use Sign in method or Service Principal due to some reason. I rather store my service principal Client ID and Secret in an API…
0
votes
0 answers

Unable to query D365 finance and operation data with headers in synapses serverless pool

I have the D365 F&O data from data lake to synapses via linked services. The data is stored in .csv format and header is stored in another format as .cdm.json, when am querying the .csv file am unable to see the column names instead its showing…
0
votes
0 answers

OData action in data entity for table without natural key

In Dynamics 365 Finance and Operations, I created data entity for WMSOrderTrans table. Let's say it's SalesOrderPickingListLines. I've added EntityKey with two fields: orderId and RecId (the same index exists in the table itself, named…
tomekc
  • 44
  • 5
0
votes
0 answers

validate financial dimension on general journal x++

I make a report have all validation on general journal before posting . I want to check about financial dimension have an error or not . so which method check on financial dimension ?
0
votes
0 answers

Form refresh issue- after every refresh selected record replaced by the last record of the grid

Created extension of "SMAServiceOrderTable" form and added 2 customized view's view1 and view2 as a data source both link type "outer join" . after changing to link type "Delayed" form issue is got solved . but its causing slow filtration of record…
Ravi
  • 1
0
votes
1 answer

move cursor of datasource to the next record on form extension

[ExtensionOf(formControlStr(BankReconciliation ,ClearALL))] final class ClearAll_Extension { void clicked(){ next clicked(); FormRun formrunn = this.FormRun(); FormDataObject myField; FormCheckBoxControl…
0
votes
1 answer

SSRS report tables mutiple lines not showing

I am doing Microsoft Dynmics D365 report layout. I have a table in my report that need to show the lines from the table in MS Dynamic D365. Which have only 2 lines. D365 frontend system: In the report layout, it is only showing the first line and…
0
votes
0 answers

SSRS reporting tool and X++ code for MS Dynamics D365

I am doing a SSRS Report for MS Dynamics D365 for report layout. I have successfully mapped the correct field in the line level. I have 3 lines in the line level, the first line of one of the field have a data or a value and the next other 2 does…
0
votes
1 answer

How to validate dialog fields without closing the dialog window?

I would like to validate the DialogField value without closing the dialog window (not in closeOK). I'm using Dynamics 365 FFO. class myClassCaller { MyClassDialog::MyPromtDialog(`parameters`); } class MyClassDialog { static container…
ulisses
  • 1,549
  • 3
  • 37
  • 85
0
votes
0 answers

microsoft dynamics webAPI listing purchase orders

How do you list purchase orders using the Microsoft Dynamics WebAPI? Similarly, how do I list purchase orders with their line items using WebAPI? I am having a real hard time finding decent and clear documentation on using WebAPI to find purchase…
Tony B
  • 915
  • 1
  • 9
  • 24