|
|
|
|
|
|
|
|
|
|
|
Re: Concurrent Program Parameter Validation [message #521756 is a reply to message #518898] |
Thu, 01 September 2011 14:53 |
|
vamsi kasina
Messages: 2112 Registered: October 2003 Location: Cincinnati, OH
|
Senior Member |
|
|
The mentioned one in the attachment is just a warning message.
Whenever we use any Pair / Special value set, we will get that.
This is only allowed in Forms / CPs, NOT for OAF pages. You can ignore it.
One thing I can say that you always need to use :NULL when this parameter should be enabled.
So, it should be :$FLEX$.PARTY_UK_V:NULL
As it simply replace the value there, you need to have single quotes around it due to NULL values.l_par1 varchar2(100) := ':$FLEX$.PARTY_UK_V:NULL';
l_par2 varchar2(100) := ':$FLEX$.PARTY_LEGACY_NUM_V:NULL'; Then only we will get the values asl_par1 varchar2(100) := '';
l_par2 varchar2(100) := ''; Otherwise, it would be l_par1 varchar2(100) := ;
l_par2 varchar2(100) := ; Anyway I also tried. But no clue why that is not working.
I doubt "Validate" event will work only when the user tabs out from the field.
As it is hidden (non-displayed), the validation might not be happening.
You may log an SR with Oracle Support to crosscheck.
By
Vamsi
|
|
|