Tuesday, October 24, 2017

SYSTEM.FORM_STATUS - Form- System Variables in Oracle Forms

SYSTEM.FORM_STATUS represents the status of the current form.  The value can be one of three character strings:

  • CHANGED:- Indicates that the form contains at least one block with a Changed record.  The value of  SYSTEM.FORM_STATUS becomes CHANGED only after at least one record in the form has been changed and the associated navigation unit has also changed.
  • NEW:- Indicates that the form contains only New records.                                                            
  • QUERY:- Indicates that a query is open.  The form contains at least one block with QUERY records and no blocks with CHANGED records.


                 IF :System.Form_Status = 'CHANGED' THEN 
                     Commit_Form;

END IF;
Clear_Form;

No comments:

Post a Comment

currentAppUi built in variable in VBCS

$global.currentAppUi.id :- The id of the App UI $global.currentAppUi.urlId :-The id of the App UI as shown in the URL $global.currentAppUi.d...