Thanks for the fast reply. I'm pretty new to Power Apps and didn't realize it was this detailed with the customization.
The users navigate to the items using a gallery. When they open the item, it's in read only mode until they click and 'edit' button that has this in the On Select:
Set(Inputformchange,0);
Set(Sortformchange,0);
Set(Inventoryandfunctionalformchange,0);
Set(Ownerdispchange,0);
Set(Reworkchange,0);
Set(Returnchange,0);
Set(Devchange,0);
Set(Scrapchange,0);
Set(Closurechange,0);
Set(Commentschange,0);
Set(Attachmentschange,0);
EditForm(InputForm_1);
EditForm('Inventory and Functional Review');
EditForm(OwnerDisposition_1);
EditForm(sortForm_1);
EditForm(Rework_1);
EditForm(Return_1);
EditForm(Deviation_1);
EditForm(Scrap_1);
EditForm('Closed Status_1');
EditForm(Comments_1);
EditForm(Attachments_1);
After making changes, they click a save button which has this in the On Select:
SubmitForm(Comments_1);
Patch(
'Nonconforming Product Database Smyrna',
{'Ticket #':Comments_1.LastSubmit.'Ticket #'},
InputForm_1.Updates,
'Inventory and Functional Review'.Updates,
OwnerDisposition_1.Updates,
sortForm_1.Updates,
Rework_1.Updates,
Return_1.Updates,
InputForm_1.Updates,
Deviation_1.Updates,
InputForm_1.Updates,
Scrap_1.Updates,
'Closed Status_1'.Updates,
Attachments_1.Updates
);
Icon.Reload;
ViewForm(InputForm_1);
ViewForm('Inventory and Functional Review');
ViewForm(OwnerDisposition_1);
ViewForm(sortForm_1);
ViewForm(Rework_1);
ViewForm(Return_1);
ViewForm(Deviation_1);
ViewForm(Scrap_1);
ViewForm('Closed Status_1');
ViewForm(Comments_1);
To return to the gallery, they click a button called 'back' which has this in the On Select:
Navigate('Tag List V2.0 Beck Arnley');ViewForm(sortForm_1);ViewForm(Rework_1);ViewForm(Return_1);ViewForm(Deviation_1);ViewForm(Scrap_1);ViewForm(OwnerDisposition_1);ViewForm('Closed Status_1');ViewForm(InputForm_1);ViewForm('Inventory and Functional Review');