I added the Patch script (see below), with partial success:
The app is saving the new form entries to my new List ("Packaging Supplies Usage"), but it's recording the 'count' entries as zeroes (Qty On Hand, Quantity Received).
I went to look at the original List ("Packaging Supplies") and it's still saving the form entries, but including the 'count' entries with the values that were entered within the form.
Here is the script for the 'Count Entry' form:
Navigate(SuccessScreen,ScreenTransition.Cover);
Patch(
'Packaging Supplies Usage',
Defaults('Packaging Supplies Usage'),
{
Material_x0020_Type:MaterialTypeGallery.Selected.Title,
Title:ItemsListItem.Selected.Title,
PartNo_x002e_:ItemsListItem.Selected.PartNo_x002e_,
UOM:ItemsListItem.Selected.UOM,
QtyperUOM:ItemsListItem.Selected.QtyperUOM,
PrimaryVendor:ItemsListItem.Selected.PrimaryVendor,
QtyOn_x002d_Hand:Value(DataCardValue25.Text),
QuantityReceived:Value(DataCardValue1.Text),
CountedBy_x003a_:DataCardValue12.Text
})
How can I get the patch to pull the form input values as well as the other "selected" values?
EDIT: The form entry control is still assigned to the original Data Source (List: Packaging Supplies).