I can run a SP from PowerApps using Flow when I just pass a Value like this.
'PowerApps-Schaltfläche_2'.Run(6000) <that One works>
But I want to have it dynamic. On my Detailscreen I have a DetailForm and Datacards with the values. But i can't pass it over
It says "Invalid arguments" The Name of the datacard is "ID"
'PowerApps-Schaltfläche_2'.Run(ID.DataField) <not working>
PowerApps-Schaltfläche_2'.Run("ID") <not working>
Any Ideas please
Thx Claus
Solved! Go to Solution.
Allright I found a solution bymyself
Thing is.. I got the wrong property . So the solution to pass over a parameter is only depending of the content of the datacard
'PowerApps-Schaltfläche_2'.Run(ID.Default)
But this hopefully helps helps other people
Could the issue be that Flow is expecting a number and PowerApps is inserting a string from your field? If that is the case then it would look something like this:
PowerApps-Schaltfläche_2.Run(Value(ID.Text))
Thx for the Answer.
You are right in terms of the numeric value from the proc. A Bigint parameter is required
Your solution was hopeful but it didn't wotk 😞
PowerApps-Schaltfläche_2.Run(Value(ID.Text))
PowerApps-Schaltfläche_2.Run(Value(ID.Datfield))
Allright I found a solution bymyself
Thing is.. I got the wrong property . So the solution to pass over a parameter is only depending of the content of the datacard
'PowerApps-Schaltfläche_2'.Run(ID.Default)
But this hopefully helps helps other people
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
208 | |
187 | |
82 | |
56 | |
36 |
User | Count |
---|---|
287 | |
245 | |
119 | |
81 | |
55 |