Subhash
Answered On : Sep 1st, 2005
Using :system.last_query

1 User has rated as useful.
Login to rate this answer.
venkat
Answered On : Sep 26th, 2005
How to see the select statement when we issue execute_query
Login to rate this answer.
Sumanth
Answered On : Oct 27th, 2005
Override key exeqry with :system.last_query
Login to rate this answer.
Venkata Ramana
Answered On : Sep 14th, 2006
Using Get_Block_Property('Block Name',LAST_QUERY); Built-in function we can see the query which is executed last in the form module.
Login to rate this answer.
Using :system.last_query
Login to rate this answer.
BY USING :SYSTEM.LAST_QUERY;
EXAMPLE
WHEN-NEW-FORM-INSTANCE
BEGIN
execute_query;
MESSAGE(:SYSTEM,LAST_RECORD);
END;
RUN THE FORM...
Login to rate this answer.
Using :system.last_query
Login to rate this answer.