SYSTEM.CURRENT_FORM
SYSTEM.CURRENT_FORM represents the name of the form that Oracle Forms is executing. The value is always a character string.
You can use the GET_APPLICATION_PROPERTY Built-in to obtain the name of the current form.
Assume that you want any called form to be able to identify the name of the form that called it. You can invoke the following user-defined procedure before Oracle Forms issues a call. This procedure stores the name of the current form in a global variable named CALLING_FORM.
PROCEDURE STORE_FORMNAME IS
BEGIN
:GLOBAL.Calling_Form := :System.Current_Form;
END;