Hi Experts,
I am trying to create offline app. I am facing issue-
My scenario is - I have a screen containing some textinput , labels etc and on submit button I have following code
And on Onstart of App I have following-
LoadData(
TriagebyBusCollection,
"Saveitemstotriagebybus",
true
);
If(
!IsEmpty(TriagebyBusCollection.cre08_temperature) && Connection.Connected,
ForAll(
TriagebyBusCollection,
Patch(
'Triage daily Replicas',
Defaults('Triage daily Replicas'),
{
Temperature: cre08_temperature,
'Other Symptoms': cre08_othersymptoms,
'Seat Number Dummy':cre08_seatnumberdummy,
'Population Master Lookup': cre08_populationmasterlookup,
'Cedula ID': cre08_cedulaid,
'Journey Lookup':cre08_journeylookup
}
)
)
);
If(IsEmpty(Errors('Triage daily Replicas')),Clear(TriagebyBusCollection));
SaveData(
TriagebyBusCollection,
"Saveitemstotriagebybus"
);
Facing issue as show in the image. How can I solve that? How can I fetch GUID and insert into CDS online and offline ?