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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Populating reports Param from a Param

Re: Populating reports Param from a Param

From: Malcolm Dew-Jones <yf110_at_vtn1.victoria.tc.ca>
Date: 2 Feb 2000 14:00:08 -0800
Message-ID: <3898a8e8@news.victoria.tc.ca>


dredogg (dredogg_at_bell.net) wrote:
: In the report, I have 2 user parameters

: :Protocol and :Site.

: I'm trying to populate the :Site parameter based
: on the value selected in the :Protocol parameter.

: Is this possible?

sure, use the "after report parameter form" trigger.

	function AfterPForm return boolean is
	begin
		:Site := :Protocol;
		return (TRUE);
	end;

is a simple example.

: Thanks in advance!

: --
: Free audio & video emails, greeting cards and forums
: Talkway - http://www.talkway.com - Talk more ways (sm)

-- Received on Wed Feb 02 2000 - 16:00:08 CST

Original text of this message

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