Hey All,
I have an interesting problem and cant get it to work.
So in my item screen the user selects which devices they need to order.

Then in my "confirm" screen I Collect the list made in Product Order. It only stores the CPID and Device Type.

Now when I "Place Order" this is my code. For some reason it isn't allowing me to write to each device in my database with the TM information provided in this screen.
ForAll(
gly_items.AllItems,
Patch(
CPA_db_master,
LookUp(
CPA_db_master,
'Core Pilot ID'='Core Pilot ID',
{
Assigned:{Value:"Yes"},
Title:txt_cnfm_Title,
MyToyotaID:txt_cnfm_mtid,
Email:txt_cnfm_email,
Role:txt_cnfm_role,
Project:txt_cnfm_project,
Shop:txt_cnfm_shop,
Plant:dpdn_cnfm_plant,
'Date Out':txt_cnfm_date
}
)
)
);
Notify("Your items have been successfully updated!",Success);
Navigate(CPA_legal,ScreenTransition.Cover)
So This is only 1 save. I still need to patch another save to "order history"
Thank you so much for your help.
Kyle