|
|
Re: what is the different between parameters and global varibals ??? [message #139271 is a reply to message #138985] |
Tue, 27 September 2005 03:40 |
sixthpurgatory
Messages: 12 Registered: September 2005 Location: indonesia
|
Junior Member |
|
|
It doesn't help much [sorry, but that's the truth]...
Here's my condition :
In the WHEN-NEW-FORM-INSTANCE trigger, I use :
declare
pl_id ParamList;
begin
pl_id := create_parameter_list('npk');
add_parameter(pl_id,'kunci',TEXT_PARAMETER,'blablabla');
end;
and in the same form, when I want to fetch that parameter, it works. But, when I pass the Parameter list to another form in WHEN-BUTTON-PRESSED trigger, like this :
declare
pl_id PARAMLIST;
temp varchar2(2000);
begin
pl_id := GET_PARAMETER_LIST('npk');
get_parameter_attr(pl_id,'kunci',temp,:bparam.param);
OPEN_FORM('C:\v_form\Parameter\Param2.fmx', activate, no_session, pl_id);
end;
It doesn't work at all. There is a message box writes :
FRM-47023 : No such parameter named KUNCI exists in form PARAM2
I don't know what's the meaning of it...
Can somebody help me ? Thx before.
Regards,
V
[Updated on: Tue, 27 September 2005 04:12] Report message to a moderator
|
|
|
|
|
|
|
|
|
|
|
|