Question on procedure 'create-record'

Rabbit

Member
I found a program of a smart browser and the browsing table is a temp table. Under the 'add-record' procedure, I found a statment

RUN dispatch IN THIS-PROCEUDRE 'create-record':U.

I have search the program but I cannot find any procedure name 'create-record' and I even cannot find any create statement for the temp table. How can the program work?:eek:
 
Actually, the dispatch procedure will handle the create-record. Indeed you won't find any procedure doing a create temp-table, but it will happen. This is standard behavior of smartobjects, and is the main reason why they are so easy to use...

You will also find the delete, update, copy and cancel-record procedures.
 
Top