Hello everyone,
I’m developing an offline application where I load data into a Runtime Properties table (ORT - Intervention
) while online.
When I switch to offline mode and click on an item iterated from the ORT - Intervention
list, I attempt to read the selected object in the context by loading it into a Runtime Table (RT - Intervention
) with cardinality one.
However, while this works perfectly online, I encounter the following error when offline:

Does anyone know why this error occurs in offline mode and how I can resolve it?
Thank you for your help!
Hi,
Do you have any Generated Datasources in your app? These are join tables, created by Appfarm automatically when you use deep databindings.
To see if you have some, you can enable Show Generated Datasources
in DevTools.
All Generated Datasources will then be visible in the data-tab in Devtools.
You cannot have Generated Datasources in your app. From the docs:
- If you use Deep Data Bindings (Example: displaying
Orders.Product.Price
), you must use Reference Data Sources (Example: You must add Products
as a Reference Data Source on the Orders
Data Source)
You can read more here.
// Erik