Hi ,
Thanks for pointing me in the right direction .
I changed the formula a bit
ForAll(
MyCollection,
Collect(
Collection2,
Patch(
'PR INTENT LIST',
Defaults('PR INTENT LIST'),
{
'Employee Name': DataCardValue1_1.Text,
'Mail ID': DataCardValue3_1.Text,
'Entity ': DataCardValue13_1.Text,
MaterialCode: ThisRecord.MaterialCode,
Type: ThisRecord.Type,
Description: ThisRecord.Description,
HSNCode: ThisRecord.HSNCode,
Make: ThisRecord.Make,
UOM: ThisRecord.UOM,
'Unit Rate ': Value(ThisRecord.Unit),
Quantity: Value(ThisRecord.Quantity),
Amount: Value(ThisRecord.Amount)
}
).ID
)
);
PRIntentThirdScenarioFlow.Run(
Concat(
Collection2,
Value,
","
)
);
Clear(MyCollection);
Clear(Collection2);
NewForm(Form1_2)
* I closed the bracket for flow run
earlier - PRIntentTestScenarioFlow.Run(Concat(Collection2,Value,",")
now - PRIntentThirdScenarioFlow.Run(Concat(Collection2,Value,","))
and bring down the clear collection2 from the beginning to end
I appreciate your help because without it, I never would have come this far.
Nobody cooperates with us to resolve the problem; everyone just put some comments and leaves.
A platform like this needs men like you.