0
How to refer to the current Table
Hi,
How can I refer to the current table without writing the exact name of the table ?
Exemple : if I want to use the current record I use "this".
Let x := ThisTable ?
It doesn't work obviously..
Thanks
1 reply
-
If the tables are not related then:
let x := select ThisTable;
If the tables are related:
let x := ThisTable;
Content aside
- 3 yrs agoLast active
- 1Replies
- 181Views