Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Closing Report Server Automatically
In your form, create the form trigger PRE-LOGOUT with the coding below :
DECLARE PL_ID PARAMLIST; THE_PARAM VARCHAR2(10) := 'TMPDATA'; BEGIN PL_ID := GET_PARAMETER_LIST(THE_PARAM); IF NOT ID_NULL(PL_ID) THEN DESTROY_PARAMETER_LIST(PL_ID); END IF; PL_ID := CREATE_PARAMETER_LIST(THE_PARAM);
ADD_PARAMETER(PL_ID,'ORACLE_SHUTDOWN',TEXT_PARAMETER,'Yes');
RUN_PRODUCT(REPORTS,'dummy',SYNCHRONOUS,RUNTIME,FILESYSTEM,PL_ID);
END; Hope it helps.
Regds,
ChorLing
Singapore
-----Original Message----- From: drichard_at_mtlindia.com [mailto:drichard_at_mtlindia.com] Sent: Friday, June 23, 2000 5:55 PM To: Multiple recipients of list ORACLE-L Subject: Closing Report Server Automatically Hi Experts We are using Forms 4.5 with Reports 2.5. In the Application, when I exit from the closing, if I want to close the REPORT SERVER windows automatically, what command I have to give in forms ?? Please reply. Richard -- Author: INET: drichard_at_mtlindia.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access /Mailing Lists
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (likeReceived on Fri Jun 23 2000 - 20:06:02 CDT
![]() |
![]() |