Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dataverse Not Getting Correct Properties for Columns that Have Duplicate Display Names #1208

Open
BACBcnorris opened this issue Oct 14, 2024 · 1 comment

Comments

@BACBcnorris
Copy link

Describe the Bug

When using any Dataverse Action, if I select a table that has a duplicate name the properties that are displayed are that of the first table only.

It does not matter which table I select from the drop down, it will only show me the incorrect properties.

Plan Type

Consumption

Steps to Reproduce the Bug or Issue

  1. In Dataverse create a table that has a duplicate name, for example "Applications" or "Audits", these tables will be prefixed with your organization name.
  2. In Azure Logic Apps, create an action to Modify a dataverse entity.
  3. Select the new Duplicate table name from the drop down.
  4. The properties that are displayed are not correct.

When reviewing the code view, the path is not updated to reflect the correct entity name when the table is changed to either of the tables with the same name.

The only work around I have found is to update the path with the correct entity name which is organization_{table_name}

Workflow JSON

{
"type": "ApiConnection",
"inputs": {
"host": {
"connection": {
"referenceName": "commondataservice"
}
},
"method": "patch",
"headers": {
"prefer": "return=representation,odata.include-annotations=*",
"accept": "application/json;odata.metadata=full",
"organization": "@{encodeURIComponent(encodeURIComponent('{removed}.dynamics.com'))}"
},
"path": "/api/data/v9.1/@{encodeURIComponent(encodeURIComponent('audits'))}(@{encodeURIComponent(encodeURIComponent(triggerBody()?['{removed}_auditid']))})"
},
"runAfter": {}
}

Screenshots or Videos

No response

Additional context

No response

@BACBcnorris
Copy link
Author

There has been no action on this, so I am commenting on this to prevent premature closure.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant