Xref: alice comp.databases.oracle.misc:52396
Path: alice!news-feed.fnsi.net!newspump.monmouth.com!newspeer.monmouth.com!remarQ-easT!remarQ.com!supernews.com!rQdQ!corp.supernews.com!news.victoria.tc.ca!vtn1!yf110
From: yf110@vtn1.victoria.tc.ca (Malcolm Dew-Jones)
Newsgroups: comp.databases.oracle.misc
Subject: Re: Populating reports Param from a Param
Date: 2 Feb 2000 14:00:08 -0800
Organization: Victoria Telecommunity Network
Lines: 29
Message-ID: <3898a8e8@news.victoria.tc.ca>
References: <Sm0m4.40065$Mg.628900@c01read03-admin.service.talkway.com>
X-Complaints-To: newsabuse@supernews.com
X-Newsreader: TIN [version 1.2 PL2]
X-Original-NNTP-Posting-Host: 199.60.222.3
XPident: yf110

dredogg (dredogg@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)


--
