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

[CoE Starter Kit - BUG] CoE Admin Command Center - CoE Dataflows names #6119

Closed
1 task done
Titoleto opened this issue Jul 20, 2023 · 6 comments
Closed
1 task done
Assignees
Labels
bug Something isn't working coe-starter-kit CoE Starter Kit issues

Comments

@Titoleto
Copy link

Does this bug already exist in our backlog?

  • I have checked and confirm this is a new bug.

Describe the issue

I have noticed that there are repeated names in the CoE Admin Command Center app, in the CoE Dataflows

image

Expected Behavior

No response

What solution are you experiencing the issue with?

Core

What solution version are you using?

4.11

What app or flow are you having the issue with?

CoE Admin Command Center

What method are you using to get inventory and telemetry?

None

Steps To Reproduce

No response

Anything else?

No response

@Titoleto Titoleto added bug Something isn't working coe-starter-kit CoE Starter Kit issues labels Jul 20, 2023
@Jenefer-Monroe
Copy link
Collaborator

I just looked through the app and I dont know how this could happen. Can you please check for an unmanaged layer on the page?

Image

@Jenefer-Monroe Jenefer-Monroe added question Further information is requested and removed bug Something isn't working labels Jul 22, 2023
@Titoleto
Copy link
Author

Titoleto commented Jul 24, 2023

I just looked through the app and I dont know how this could happen. Can you please check for an unmanaged layer on the page?

Image

It's very curious, because today I get the names repeated in other Dataflows.

image

Here is a screenshot of what you asked for
image

@Titoleto
Copy link
Author

Titoleto commented Jul 24, 2023

I just saw the problem when editing the page and the problem is in the collection "col_coeDataflows", (this I leave, the same would happen with "CoE BYODL Flows and CoE BYODL Flows Connection or with CoE BYODL Apps Last Launched Date or with CoE BYODL Flows Last Run Date"), this is so because these flows start with the same thing

If there are rows in the table "msdyn_dataflowrefreshhistory" in which the field "msdyn_dataflowname" can have both the value CoE BYODL Apps and the value CoE BYODL Apps Connection, if we filter using the IN clause, then it is normal that when we are reading the value CoE BYODL Apps, even if we sort downwards, it could take a value from the row CoE BYODL Apps Connection.

Collect(
col_coeDataflows,
First(
Sort(
Filter(
DataflowRefreshHistories,
"CoE BYODL Apps" in DataflowName
),
EndTime,
SortOrder.Descending
)
)
);

Collect(
col_coeDataflows,
First(
Sort(
Filter(
DataflowRefreshHistories,
"CoE BYODL Apps Connection" in DataflowName
),
EndTime,
SortOrder.Descending
)
)
);

This is the solution:

Collect(
col_coeDataflows,
First(
Sort(
Filter(
DataflowRefreshHistories,
"CoE BYODL Apps" in DataflowName,
Not("CoE BYODL Apps Last Launched Date" in DataflowName),
Not("CoE BYODL Apps Connection" in DataflowName)
),
EndTime,
SortOrder.Descending
)
)
);
Collect(
col_coeDataflows,
First(
Sort(
Filter(
DataflowRefreshHistories,
"CoE BYODL Flows" in DataflowName,
Not("CoE BYODL Flows Connection" in DataflowName),
Not("CoE BYODL Flows Last Run Date" in DataflowName)
),
EndTime,
SortOrder.Descending
)
)
);

I just looked through the app and I dont know how this could happen. Can you please check for an unmanaged layer on the page?

Image

@Jenefer-Monroe
Copy link
Collaborator

Thank you for pressing and investigating. Odd that I don't repro and your thoughts seem correct.
Can you see if this fixes it at well? Basically just change everything to = instead of in
image

@Jenefer-Monroe Jenefer-Monroe added bug Something isn't working and removed question Further information is requested labels Jul 24, 2023
@Titoleto
Copy link
Author

Yes, much better as you have indicated

It works properly
image

Thank you for pressing and investigating. Odd that I don't repro and your thoughts seem correct. Can you see if this fixes it at well? Basically just change everything to = instead of in image

@CoEStarterKitBot
Copy link
Collaborator

@Titoleto This has been fixed in the latest release. Please install the latest version of the toolkit following the instructions for installing updates. Note that if you do not remove the unmanaged layers as described there you will not receive updates from us.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working coe-starter-kit CoE Starter Kit issues
Projects
Archived in project
Development

No branches or pull requests

3 participants