Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: problems in oracle report

Re: problems in oracle report

From: Pullikol Kumar <pullikol.kumar_at_mannai.com.qa>
Date: Wed, 03 Apr 2002 03:38:20 -0800
Message-ID: <F001.00439A86.20020403033820@fatcity.com>

Hi Atul kumar

  1. How can a report be editied after its generation in previewer at runtime? Which object you wanna to edit or modify .............
  2. In After_Parameter_Form trigger, we check no of records to be displayed and if it is zero then we are able to display a customised message "Records not exist". After this this trigger is failed. Now the problem is that Report Builder is giving message "REP-0771: After Form Trigger Failed". We don't want this message. How can we suppress this message "REP-0771: After Form Trigger Failed"? Solution:- You can write After_Parameter_Form trigger

   BEGIN
    SELECT count(*)
    INTO lv_count
    FROM hr_people
    WHERE country_code =:p_country_code     ;
   IF lv_count = 0 THEN

      srw.message(20, 'No reocrd found');
      raise srw.program_abort;

   END IF;
   EXCEPTION
    when OTHERS then
      srw.message(30, 'Error in reports.');
      raise srw.program_abort;

   END; 3. In the previewer we have a main-menu item "File". Under this few sub-menu
items are displayed like "Page Setup", "Print", "Mail", "Distribute" and "Generate to File". How can we hide these sub-menu items?

 you have to run R30RUN32.EXE Mode

 Hope this will help you.
Nitheesh .

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Pullikol Kumar
  INET: pullikol.kumar_at_mannai.com.qa

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 (like subscribing). Received on Wed Apr 03 2002 - 05:38:20 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US