Native Profile In mendix Studio Pro

0
Hi Guys, I am facing some issue while i am making native app by Native profile Navigation.When I am call micro flow through nano flow i am passing one entity But its gives error Please suggest something.I searched about this and get something like persistable entity not support Native.But I am suing same data model which i am using for Web.
asked
3 answers
0

Hi Disha,

Nanoflows (client side) can call Microflows (server side) for good reasons (complexity) you can all pass on non persistent object in the call.

See: https://docs.mendix.com/refguide/microflow-call#argument

If you want to send the persistent object you have to synchronize. 

Full sync: https://docs.mendix.com/refguide/synchronize

Partial sync https://docs.mendix.com/refguide/synchronize-to-device

Cheers, Andries

answered
0

Still I get Error.

answered
0

Wise men and the errormessage are saying: When calling a microflow from a nanoflow, don’t pass a persistable object!

Maybe a solution is to create an extra nonpersistable entity EventNP, pass that along to the microflow, in the microflow copy EventNP to Event (Singular as all entity names should be singular) and make that microflow call your current microflow.

 

answered