Form with tmp table as datasource

HI,

I have a form having tmp table as DS. I am populating data in the tpm table in the init.

Now , what if the form is accessed by multiple user simultaneously?

is it good idea to add Guid field on the tmp table ?

please suggest…

thanks!

No need for any Guid. Every user will get his/her own instance of the temporary table. You would need distinguish between users only if you used a persistent table or if you somehow shared the same temporary buffer across user session. If you use a normal temporary table, you don’t have to worry about such things.

thanks Martin,

I was also thinking the same