Hi All,

Create package body .......

PROCEDURE load(p VARCHAR2,ps psys%ROWTYPE default NULL)
IS
v_con con%ROWTYPE default null;
BEGIN
IF p_src = 'system' THEN
v_con.cnt_person_id := ps.customer_id ;
Endif;
......

When I compile this package it gives following error

LINE/COL ERROR
-------- ------------------------------------------------------------
16/10 PL/SQL: Statement ignored
16/20 PLS-00302: component 'CNT_PERSON_ID' must be declared

Can anybody help me out.
thanks in advance.