I insert a record into my master form and have an index which is automatically generated called {poid}
In the same app, I am then generating detail records that obviously need the {poid} value.
What is the best way to determine the value of {poid}?
Currently, my approach is super cludgey.
I generate a timestamp value and write it in the header.
I then search the header table for a record with that value and read the {poid} value.
I then write back the header record to clearout the timestamp
It works but not elegant