Dear ,
I want to give column reference in my pl/sql code. i have one page item which is P999_Balance and other column is in Interactive Grid which is EXP_AMOUNT. and my pl/sql code is
BEGIN
IF :P999_BALANCE >= :EXP_AMOUNT THEN
RETURN FALSE;
ELSE
RETURN TRUE;
END IF;
END;
but issue it does not work becasue my exp_amount column reference is wrong how can i give correct reference in Interactive Grid?
Thanks