cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
RustyP
Frequent Visitor

All apps with more than 3 commands stop working

Really strange, overnight ALL my apps have now got issues without showing errors.

So i have a gallery attached to SharePoint data and an OnSelect button to complete the following commends.

 

ClearCollect(CurrentCTC,ThisItem);
ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);
Navigate(CurrentCosttoComplete ,Fade); 

 

basicly collects the selected data and navigates to anther page which displays it and can be edited.

 

This used to work fine for ages with no issues but now its always misses the last commend! If i change the order off the above commands it will always miss the last one at the bottom, i know this because i have used the Monitoring tool. The way its shown above, it will not navigate to the new page, so frustrating. Also there are no error.

 

The really strange this is, this is also happened on my other app and Evern when i go back to a previous version that i know worked it still doesn't work!

 

Has anyone else experienced this? 

1 ACCEPTED SOLUTION

Accepted Solutions

@RustyP 

 

Try to do the steps in the accepted answer that is in this discussion thread:

Attachment picture in a gallery failed to open since one week 

does it work temporarily?

View solution in original post

11 REPLIES 11
poweractivate
Most Valuable Professional
Most Valuable Professional

@RustyP 

 

No, that's strange.

 

If you need to hurry up and work around it, does putting something arbitrary like 

Set(nullVar,Blank())

as the very last line, make all of the lines above it work?

 

I recommend you try to follow these steps below (or get your admin to follow them) to get more advanced, personalized help, as you should not be encountering this issue: 
Enter a support request through new new support center - Power Platform

RustyP
Frequent Visitor

Hi @poweractivate 

Thanks for your message, i tried what you suggested with no luck!

To add to this the below icons are now missing, this on different computers!

Im sure that should no be happening, very strange

 

 

 

 

Capture 2.PNG

Capture.PNG

 

@poweractivate and this?

cwebb365
Most Valuable Professional
Most Valuable Professional

I would put in a support request ASAP. I hope this isn't a new PowerApps backend update that could potentially start affecting everyone, that could be bad! But yeah, If you haven't get the support wagon rolling. 

Hey @cwebb365 

 

Just tried putting a support request in and its a nightmare!

You just get put through to a virtual help which is no help at all....

and when i put in a request for support i get an error.

 

I think you could be right, this seems to be an issue with Microsoft and not my app or apps 

RustyP
Frequent Visitor

Iv just found out that over people are losing their icons on all their apps they have built but are not having the same issues as me, but then they might not be using the apps the same!

 

RustyP_0-1665257374758.jpeg

 

 

Im at a loss!

@RustyP 

Try to follow all the steps here by using the below link, follow the steps all the way through, including the ones where you get to start the ticket itself.

Use this link to follow the steps to create a new Power Platform support ticket

You are saying that even when you follow all the steps, you get an error to create the ticket itself too?

 

poweractivate
Most Valuable Professional
Most Valuable Professional

@RustyP 

 

I am not able to reproduce the issue myself with the commands, I also don't get the issue with the icons, but I suspect there may be some sort of internal issues, perhaps especially for some particular kinds of existing apps, since it seems to be raised more than once recently by multiple people.

 

For the issue where it misses the last command, does putting two lines at the very end of each formula that has this issue, help?

 

 

Set(nullVar01,Blank());
Set(nullVar02,Blank())

 

 

If not, does it help if each line ending with a semicolon (;) is separated by a new line or line feed like this?

 

ClearCollect(CurrentCTC,ThisItem);
ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);
Navigate(CurrentCosttoComplete ,Fade); 
Set(nullVar01,Blank());
Set(nullVar02,Blank())

 

 

as opposed to this:

 

ClearCollect(CurrentCTC,ThisItem);ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);Navigate(CurrentCosttoComplete ,Fade);Set(nullVar01,Blank());Set(nullVar02,Blank())

 

 

If not, does it make a difference if the very last line has a semicolon too?

 

ClearCollect(CurrentCTC,ThisItem);
ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);
Navigate(CurrentCosttoComplete ,Fade); 
Set(nullVar01,Blank());
Set(nullVar02,Blank());

 

 

If not, can you do the following steps for all affected formulas (but try it with just one affected formula first) see if the below steps help?

 

1. Use this formula, only two lines

Set(nullVar01,Now());
Set(nullVar02,Now());

2. Cause the property of the above formula to be triggered

3. Go to

     a. Ellipses to the right of Settings -> and then

     b. Variables and check that the variables have updated with the current time and date

poweractivate_0-1665318845517.png

Confirm that the current date and time is there above.

 

If that worked, now replace the affected formula with

ClearCollect(CurrentCTC,ThisItem);
ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);
Navigate(CurrentCosttoComplete ,Fade); 
Set(nullVar01,Now());
Set(nullVar02,Now());

 

If not, try like this

ClearCollect(CurrentCTC,ThisItem);
ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);
Set(nullVar01,Now());
Navigate(CurrentCosttoComplete ,Fade); 
Set(nullVar02,Now());

 

or this

ClearCollect(CurrentCTC,ThisItem);
ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);
Set(nullVar01,Now());
Navigate(CurrentCosttoComplete ,Fade); 
Set(nullVar02,Now());
Set(nullVar03,Now());

 

and also try this

ClearCollect(CurrentCTC,ThisItem);
ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);
Set(nullVar01,Now());
Navigate(CurrentCosttoComplete,ScreenTransition.Fade); 
Set(nullVar02,Now());
Set(nullVar03,Now());

 

Does it help @RustyP ?

 

If any of the above helps, you can do that for now,

however, you should definitely not have to do anything of the sort.

I would recommend to follow these steps as soon as possible to raise the support ticket.

It's also possible none of the above will help, so you should try to get in touch with support as soon as possible.

poweractivate
Most Valuable Professional
Most Valuable Professional

@RustyP 

 

Also pay attention to this line

 

ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);

 

Try getting rid of any line related to Attachments, see if this helps

 

If it does, the issue may be specifically related to using Attachments or dealing with Attachments.

 

If so, try seeing if these variations work:

 

//original
ClearCollect(CurrentCTCAttachmenets,ThisItem.Attachments);

//variation
ClearCollect(CurrentCTCAttachmenets,First(ThisItem.Attachments));

//variation
ClearCollect(CurrentCTCAttachmenets,First(ThisItem).Attachments);

//variation
ClearCollect(CurrentCTCAttachmenets,First(First(ThisItem).Attachments));

 

You should certainly not have to do that. I doubt any of the above would work, because I am unsure of the exact issue here as well.

However, at least see if the issue might be specifically when you have any lines in the formula related to an Attachment of any kind.

If so, this may be valuable information to provide to support

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,401)