OraFormsDestroy Function

Action

Shuts down the Oracle Forms replay engine. This function may only be called in the TShutdown transaction.

Include

OraFroms.bdh

Syntax

OraFormsDestroy( ) : boolean;

Return value

  • true if successful
  • false otherwise

Example

dcltrans
  transaction TInit
  begin
    WebSetBrowser(WEB_BROWSER_MSIE6);
    WebModifyHttpHeader ("Accept-Language", "en,de-at;q=0.5);
    OraFormsInit ("http://vangelis:8888/forms90demo/190servlet", "vangelis", 9000, ORA_FORMS_9I);
  end TInit;

  transaction TShutdown
  begin
    OraFormsDestroy();
  end TShutdown;