Notifications
Announcements
Hi Sudheer,
The issue you're facing likely comes from how SubmitForm() and Patch() are working separately.
SubmitForm()
Patch()
When you use SubmitForm(Form1_2), it attempts to submit all fields bound to that form. However, when you follow it immediately with a Patch(), you're essentially creating a second item in the CreateNewRequest table — you're not updating the same one the form submitted.
SubmitForm(Form1_2)
CreateNewRequest
That’s why you see an error like "Application name field is missing" — the form submission and patch are disjointed.
If you're inserting one field via Patch and the rest via Form, you should consider patching everything in one call, or using the OnSuccess property of the form to perfom the patch.
OnSuccess
Patch(CreateNewRequest, Defaults(CreateNewRequest), { 'Application_x0020_Name': DataCardValue1_1.Text, PermissionLists: Concat(ComboBox1.SelectedItems, ID, ","), Field1: DataCardValueX.Text, Field2: DataCardValueY.Text // Add other fields from the form here manually });
Patch(CreateNewRequest, Form1_2.LastSubmit, { 'Application_x0020_Name': DataCardValue1_1.Text, PermissionLists: Concat(ComboBox1.SelectedItems, ID, ",") });
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
In our never-ending quest to improve we are simplifying the forum hierarchy…
We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 717 Most Valuable Professional
Michael E. Gernaey 329 Super User 2025 Season 2
Power Platform 1919 268