newDoc1232152114520.html

Comments
-
responsibility_id refers to the primary key of hz_role_responsibility.
It would be generated by the sequence HZ_ROLE_RESPONSIBILITY_S.
So perhaps you can check whether this sequence is valid:
select * from all_sequences where sequence_name='HZ_ROLE_RESPONSIBILITY_S';
select object_name,object_type,status from user_objects where object_name='HZ_ROLE_RESPONSIBILITY_S';
regards
Tasneem
0