cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Resume App session with all controls still filled out from previous session

Hey everyone,

 

I am updating an app that I did not create. But some of the users say if they put their phone in their pocket for like 15 min and then try to continue where they left off it kicks them out.

Is it possible to save user control inputs, so that if that happens they can "resume" where they left off?

This is a canvas app that does not use a form control. 

 

1 ACCEPTED SOLUTION

Accepted Solutions
mmollet
Community Champion
Community Champion

Only way I can think to do that is as follows: (will be a pain depending on number of controls you have)

  • For this example I will have 1 screen with 3 controls but you can scale it to whatever size you need. 
    • Control 1: TextInput that holds user input of type string
    • Control 2: TextInput that holds user input of type int
    • Control 3: Dropdown menu that hold user input of type string
  • I will also use a SP list named Controls for this example with your users each getting their own row in the list. This will be used to look up the saved values for each control when they want to reopen the app. The columns in this list will need to include the user name/user email and a place to store each control value.
    • Col1: UserName - string (single line of text)
    • Col2: Control1 - string (single line of text) (i would make a better name depending on what the control is called or what it is storing)
    • Col3: Control2 - string (single line of text) (i would make a better name depending on what the control is called or what it is storing)
    • Col4: Control3 - string (single line of text) (i would make a better name depending on what the control is called or what it is storing)
  • This will utilize a timer to 'auto-save' every x number of miliseconds I will be using 10000 for 10 sec since you said 15 sec is an issue for sure.
  • My SP list will store the User().FullName or User().Email doesnt matter which. I will use User().FullName

The idea here is to have the timer execute a patch function that saves all current control values to a SP list that will be used to repopulate the controls. The repopulation is where the pain in the ass will come in. The patch statement could be something like: 

OnTimerEnd: Patch(Controls, {UserName: User().FullName, Control1: Control1.Text, Control2: Control2.Text, Control3: Control3.Selected.Value})

This timer will execute this patch every 10 seconds and will find the current user in the new list and will save the current input for each control to its respective column for access later when the user is ready to start again.

 

Now for the fun part 😅

 

Each of the controls will need AT LEAST this to be done to them on top of what they already do. Be careful about how this is done as this could introduce bugs if the logic is changed in even slight ways. I would reccomend making sure you have a version that you know you can revert back to before changing the following if not before doing any of this. 

 

OnStart for app: Set(userSaveState, Lookup(Controls, UserName = User().FullName))

Now we have the row for that user and all of their saved control values.

For each control you will need something like the following:

Control1.Text - (this was a TextInput of type string): If(IsBlank(userSaveState.Control1), do normal stuff, userSaveState.Control1)

What we are doing here is checking if the save state has a value for that control. If it does not have a value saved then you let whatever was happening before happen (this could be nothing), but if there is a value saved for that control we want to display it. This will need to be done for literally every control in the app that you want to save. What should result is an auto-loading save state for the user based on the last auto-save that was executed by the timer. 

 

The last step would be to figure out when you want to clear the user's save state in the SP list. For example if you have a form that you are trying to do this with and your user submits the form, this would be a good time to clear the save state data from their sharepoint row as you can assume that it is no longer needed since it was uploaded. This could be done by doing:

Patch(Controls, UserName = User().FullName, {Control1: Blank(), Control2:Blank(), Control3:Blank()})

**Make sure you dont erase the UserName column as that would make none of this work. only do the columns that hold control values for the save state

 

Once this is done update me on how its going. I have done very similar things to this before but this is just all off the top of my head so maybe try this first and see how far it gets you. Might even build a quick app that just submits an item from a simple form and test the functionality using that before messing with the real data. 

 

Im sure this was TMI but I hope it helps!


If this post solves your issue please mark it as a solution.

View solution in original post

3 REPLIES 3
mmollet
Community Champion
Community Champion

Only way I can think to do that is as follows: (will be a pain depending on number of controls you have)

  • For this example I will have 1 screen with 3 controls but you can scale it to whatever size you need. 
    • Control 1: TextInput that holds user input of type string
    • Control 2: TextInput that holds user input of type int
    • Control 3: Dropdown menu that hold user input of type string
  • I will also use a SP list named Controls for this example with your users each getting their own row in the list. This will be used to look up the saved values for each control when they want to reopen the app. The columns in this list will need to include the user name/user email and a place to store each control value.
    • Col1: UserName - string (single line of text)
    • Col2: Control1 - string (single line of text) (i would make a better name depending on what the control is called or what it is storing)
    • Col3: Control2 - string (single line of text) (i would make a better name depending on what the control is called or what it is storing)
    • Col4: Control3 - string (single line of text) (i would make a better name depending on what the control is called or what it is storing)
  • This will utilize a timer to 'auto-save' every x number of miliseconds I will be using 10000 for 10 sec since you said 15 sec is an issue for sure.
  • My SP list will store the User().FullName or User().Email doesnt matter which. I will use User().FullName

The idea here is to have the timer execute a patch function that saves all current control values to a SP list that will be used to repopulate the controls. The repopulation is where the pain in the ass will come in. The patch statement could be something like: 

OnTimerEnd: Patch(Controls, {UserName: User().FullName, Control1: Control1.Text, Control2: Control2.Text, Control3: Control3.Selected.Value})

This timer will execute this patch every 10 seconds and will find the current user in the new list and will save the current input for each control to its respective column for access later when the user is ready to start again.

 

Now for the fun part 😅

 

Each of the controls will need AT LEAST this to be done to them on top of what they already do. Be careful about how this is done as this could introduce bugs if the logic is changed in even slight ways. I would reccomend making sure you have a version that you know you can revert back to before changing the following if not before doing any of this. 

 

OnStart for app: Set(userSaveState, Lookup(Controls, UserName = User().FullName))

Now we have the row for that user and all of their saved control values.

For each control you will need something like the following:

Control1.Text - (this was a TextInput of type string): If(IsBlank(userSaveState.Control1), do normal stuff, userSaveState.Control1)

What we are doing here is checking if the save state has a value for that control. If it does not have a value saved then you let whatever was happening before happen (this could be nothing), but if there is a value saved for that control we want to display it. This will need to be done for literally every control in the app that you want to save. What should result is an auto-loading save state for the user based on the last auto-save that was executed by the timer. 

 

The last step would be to figure out when you want to clear the user's save state in the SP list. For example if you have a form that you are trying to do this with and your user submits the form, this would be a good time to clear the save state data from their sharepoint row as you can assume that it is no longer needed since it was uploaded. This could be done by doing:

Patch(Controls, UserName = User().FullName, {Control1: Blank(), Control2:Blank(), Control3:Blank()})

**Make sure you dont erase the UserName column as that would make none of this work. only do the columns that hold control values for the save state

 

Once this is done update me on how its going. I have done very similar things to this before but this is just all off the top of my head so maybe try this first and see how far it gets you. Might even build a quick app that just submits an item from a simple form and test the functionality using that before messing with the real data. 

 

Im sure this was TMI but I hope it helps!


If this post solves your issue please mark it as a solution.

@mmollet First thank you very much for that detailed explanation. I don't know why I didn't think about the timer. This is def a good start. I will start to work on this. It will take some time as I have about 25 controls. Yikes.

Holy 🦆! xD well good luck and I hope it works out for you!


If this post solves your issue please mark it as a solution.

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 (554)