Thanks in advance for your time.
I declared a variable as ROWTYPE for a given table:
v_rec table%ROWTYPE;
An error occurs with the following statement:
IF v_rec IS NOT NULL
THEN
<<some logic>>
END IF;
If I use a column from the table, script executes w/o problems:
IF v_rec.acolumn IS NOT NULL
THEN
<<some logic>>
END IF;