Hello, hope somebody of you has an idea where my error is coming from…
- In my app, users have to register first (“users”).
- I want the app to display some public user info, so I created a “user profile” with a relation to the “user”. The relation is done through row ID.
So far, so good! In my app, teachers create courses and add students to them (with a public “user profile” which contains a random cartoon image and a random name, so everything anonymous).
- In order to CREATE the “user profile” I created a workflow: When a user signs up for a course for the first time, a new user profile is created and linked to the user. In the workflow, I add the row ID of the “user” to the new “user profile”.
Here comes the error: The user’s row ID does not exist (yet?). For some users, there is an error. For others, everything works. You see that in the screenshot enclosed.
- I am also updating the “user” with the image of the “user profile” in this workflow. Because the user image cannot be a lookup column, as you know. Same error: User row does not exist.
How is this possible? Does it take some time for the user row to be accessible? I added 2 seconds in the workflow and that does not help. Also, I am working with Glide tables only.