Hi Team
I am connected to power automate and work flow is set, but the issue is i have canvas that is connected to data source and the button is only picking up the name of my power automate, but its not expecting any parameters and do need these parameters from my form. How can i fix this issue, did try to create a new one, refreshed but still there are no parameters to pass. What am missing here and yet i dont receive any email when i submit values to my form.
Umesh BaradkarPosted Mar 25, 2024, 3:56 PM
https://www.c-sharpcorner.com/article/how-to-call-a-flow-from-powerapps-and-get-back-the-response2/ This article will help you.
Mithilesh TataPosted Mar 23, 2024, 6:43 AM
It sounds like you're encountering issues passing parameters from your Power Apps canvas app to your Power Automate flow. Here are some steps you can take to troubleshoot and resolve this issue:
Ensure Data Source Connection: Double-check that your Power Apps canvas app is properly connected to the data source that contains the form data. If the connection is not set up correctly, the canvas app won't be able to pass data to Power Automate.
Check Power Automate Trigger: In Power Automate, make sure that your flow trigger is configured to receive input parameters. If your flow trigger is not set up to accept parameters, it won't be able to receive the data sent from Power Apps.
Verify Parameter Names: Ensure that the parameter names in your Power Apps canvas app match the parameter names expected by the Power Automate flow. If there's a mismatch in parameter names, the data won't be passed correctly.
Update Button Action: In your Power Apps canvas app, verify that the button's action is set up to call the correct Power Automate flow and pass the necessary parameters. You may need to update the button's OnSelect property to include the parameters you want to pass.
Test Flow Manually: Test your Power Automate flow manually within the Power Automate interface to verify that it's working as expected. This will help you determine if the issue lies with the flow itself or the integration with Power Apps.
Check Flow Run History: Review the run history of your Power Automate flow to see if there are any errors or failures occurring when it's triggered from Power Apps. This can provide insights into what might be going wrong.
Debugging in Power Apps: Use the debugging features in Power Apps to troubleshoot the data flow between your canvas app and Power Automate. You can use functions like
Notifyto display messages orUpdateContextto store and track variable values during app execution.Review Permissions: Ensure that the user account you're using to submit the form data has the necessary permissions to trigger the Power Automate flow and access any related resources.
By following these steps and thoroughly reviewing your Power Apps canvas app, Power Automate flow, and the integration between them, you should be able to identify and resolve the issue with passing parameters and not receiving emails when submitting form values.