Link to home
Start Free TrialLog in
Avatar of CliffEngelWirt
CliffEngelWirt

asked on

How to get page parameter pass to portlet.

In Oracle Portal , I have page parameter value as bind variable. ex. :commID and default value is 1.
How can I pass this parameter to portlet to make my portlet has dynamic content generated based on this bind variable?  Any PLSQL API Available?
Avatar of Mayank S
Mayank S
Flag of India image

You can't talk to a portlet via PL/ SQL API. What exactly are you looking for?
bind variable can be assigned a value in Your portlet and can be transfered into an environment variable,defined at PLSQL session level.I'm not sure how it's for Portal but in SQLPLUS it would work like that:
var myv varchar2(50)
declare
:myv:='value'
begin;
null;
end;
Avatar of CliffEngelWirt
CliffEngelWirt

ASKER

I have page parameter for my page, but I don't know how to pass the value of the page parameter to the portlet inside the page.  I think there may be any API I can use.
ASKER CERTIFIED SOLUTION
Avatar of rgouw
rgouw

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial