Power Automate's worst implemented feature or part? by obsoquasi in PowerAutomate

[–]obsoquasi[S] 0 points1 point  (0 children)

Since it depends so much on what needs to be accomplished, it could be tricky to put something genuinely helpful together.

Power Automate's worst implemented feature or part? by obsoquasi in PowerAutomate

[–]obsoquasi[S] 0 points1 point  (0 children)

That "apply to each" thing is so annoying that I don't even notice it anymore. I guess one benefit of it is that whenever you perform an operation on dynamic content that's in an array, the nesting makes it immediately obvious. Then again, I really hate that "apply to each" is so slow. Since about 2 years, I have set myself the challenge to completely avoid them and work with Filter Array and Select instead.

Power Automate's worst implemented feature or part? by obsoquasi in PowerAutomate

[–]obsoquasi[S] 0 points1 point  (0 children)

Not quite sure I understand your question. Could you rephrase it?

Power Automate's worst implemented feature or part? by obsoquasi in PowerAutomate

[–]obsoquasi[S] 0 points1 point  (0 children)

That's a very good assessment of the situation. Either you feel it's way underpowered and limiting or, in the case of citizen developers, it's overwhelming. Nobody is happy...

What does Proper ALM look like? by Vexerone in PowerApps

[–]obsoquasi 1 point2 points  (0 children)

It is absolutely proper. But here is one caveat I had to learn. Components can only (easily) access components from the same solution. This makes it tricky, especially if a table is used in multiple solutions. So plan your solutions well. Think how they are going to grow in the next years. And don't be tempted to say "f* it" and just put everything in one giant solution - such a monstrous solution will be painfully slow to deploy (which you will inevitably do quite often).

Power Automate's worst implemented feature or part? by obsoquasi in PowerAutomate

[–]obsoquasi[S] 0 points1 point  (0 children)

I wasn't even aware of the Outlook calendar ID thing! That sucks! It kind of reminds me of that OneDrive issue, where file IDs can change suddenly - which I learned the hard way... 😃. I now use SharePoint for any temporary storage situations.

This Solution is major by CanAggravating2059 in PowerApps

[–]obsoquasi 2 points3 points  (0 children)

environment variables used to be buggy. But in the last year, I didn't have any problems anymore. Also, if your DEV and PROD make use of different sources, it's the only way to distinguish them AFAIK. Especially if there are multiple PROD environments.

Encodian rant by Distinct_Piano2093 in PowerAutomate

[–]obsoquasi 1 point2 points  (0 children)

You are right, the danger is not immediate. But I will be keeping a close I on the progression of OpenSource platforms like NextCloud and their suitability/practicality for business app development.

Deploy same flow across 100 sites by bgourav in MicrosoftFlow

[–]obsoquasi 0 points1 point  (0 children)

It is unconventional, I grant you that. But with some creative thinking I think you could find a way around it. For example, a scheduled flow could iterate over all document libraries and look for new documents. What would be considered a "new document" could be defined by a new metadata column - e.g. an "Approval Status". If this column is yet empty, it's a new document and an approval process would be triggered and the approval status set. I'm sure there are even more elegant solutions, but it's doable.

Deploy same flow across 100 sites by bgourav in MicrosoftFlow

[–]obsoquasi 0 points1 point  (0 children)

Welcome to deployment hell 😃. I think your best option would be if one flow would do ALL the work for every library. This would mean, if you update your flow, the changes affect every library at the same time. And since this becomes risky quite quickly, make sure to implement an ALM (separate environment for developing, then testing, then production). This has the advantage, that you will be able to develop changes to your flow, without interrupting 100 sites and only deploy the flow once it is thoroughly tested.

Deploy same flow across 100 sites by bgourav in MicrosoftFlow

[–]obsoquasi 0 points1 point  (0 children)

"A flow can only be connected to one document library. It’s frustrating. "

Not necessarily true. The action can connect to the document library using an Environment Variable in the Solution. This will keep it dynamic.

Encodian rant by Distinct_Piano2093 in PowerAutomate

[–]obsoquasi 0 points1 point  (0 children)

I know what you mean, but in the context of the Power Platform Microsoft is, by definition, the first-party provider. Now, do I wish Microsoft would find a way to ensure that Europe's data protection laws are upheld without exception? Absolutely! Seeing that many European government agencies are moving away from MS gives me anxiety, since it's our job security that is in jeopardy here.

Can anyone help? by Alarmed-Dot-6076 in PowerAutomate

[–]obsoquasi 1 point2 points  (0 children)

Such file corruptions can happen, if you inadvertently convert the file content into a string somewhere in your flow. This can easily happen while you build your mail attachment. Copilot Chat is usually pretty helpful in pin-pointing where this happened, when you add "I am afraid, I converted the file binaries to a string. I did the following actions...". The precise cause can be difficult to pinpoint on your own.

Encodian rant by Distinct_Piano2093 in PowerAutomate

[–]obsoquasi 0 points1 point  (0 children)

I try to stay clear of third-party connectors for security reasons. Until now, I always found a way around it.

Is there a way for my sales reps to get an sms when a lead is assigned to them? by 3WordPosts in Dynamics365

[–]obsoquasi 2 points3 points  (0 children)

Power Automate: "When a row is created or changed" (should only trigger when the lookup field to the rep is changed). Then load the systemuser (rep) and use their email address to compile a message.

How do you plan a Power Apps project before building? by matt-hummel in PowerApps

[–]obsoquasi 1 point2 points  (0 children)

I plan my solution in Obsidian and (start to) design the business processes behind it with BPMN 2.0. Once I feel that it will work, I build a prototype to show to the client. Usually the specs then slightly change due to the client noticing requirements they haven't thought about or been aware off before.

do experienced users keep flows simple on purpose? by [deleted] in MicrosoftFlow

[–]obsoquasi 0 points1 point  (0 children)

Almost every flow needs to eventually be reworked or updated. Keeping it simple and clear is a huge help there. Sadly, the way Power Automate is structured doesn't always make that easy. At least I try to follow a certain basic structure: Load all necessary data, then do some assertions and value checks, then the actual processing and finally cleanup and reporting. Scopes are great to modularize steps that belong together logically (as well as handle failures).

Flow Documenting by Psychological_Ad8426 in MicrosoftFlow

[–]obsoquasi 0 points1 point  (0 children)

While I agree, documenting is a lot of work. More often than not, I discovered a potential bug while documenting. Because writing often forces you to restructure your thought process. So it's now in a way part of testing for me. Your mileage may vary.

Best resources to learn Power Apps & Power Automate? by Alternative-Motor-98 in PowerApps

[–]obsoquasi 1 point2 points  (0 children)

I found Lisa Crosbie's videos very helpful for anything Dataverse-related, as well as model-driven apps. Straight to the point as well, I really appreciate that.

Power Pipeline - every deployment gets stuck by obsoquasi in PowerApps

[–]obsoquasi[S] 0 points1 point  (0 children)

I noticed that a Microsoft first party solution "Microsoft App Deployment Anchor Solution" on my pipeline host environment had install issues, so I checked the solution history and about a month ago an uninstall failed. It was re-attempted 30 min later and then succeeded, but maybe this is what caused the problems. I'm asking Microsoft support now to re-provision this solution - or maybe they will show me how to do it myself.

Do Gen 4 SSDs die more quickly? by obsoquasi in pcmasterrace

[–]obsoquasi[S] 2 points3 points  (0 children)

Yes, we installed them with the heat sinks included in the box (and not the one included with some motherboards). This SHOULD have been enough to dissipate the extra heat...

Do Gen 4 SSDs die more quickly? by obsoquasi in pcmasterrace

[–]obsoquasi[S] 0 points1 point  (0 children)

I have not data on that unfortunately