Hello
I created an App which I wanted to distribute to various users on the following way:
There are three possibilities for me:
What is the best way or do somebody knows a better way?
Thanks Werner
The best way is to have a single data source, where all user's records are in the same table(s), and use Security Filters and/or Slices to only load/show records to the appropriate users.
I would only ever use Partitions or Private Tables if you fully understand what they are for, and have a really good reason to. I've actually never used them on a live app, only to experiment with.
Hello
thanks for the replay. The idea was to use Private Table due the fact the application will manage private informations and this increases the security and privacy of informations.
Thanks
Werner
Private tables are a bad idea.
You cannot under any circumstances add, remove, or reorder columns in the table once the table is first created. You have to ask the user to delete the table (and all its data) and recreate the table with the new columns, or you have to add a new table and migrate the data from the old table to the new one.
Do not use private tables.
User | Count |
---|---|
15 | |
12 | |
8 | |
8 | |
4 |