1287: IS
1288: -- Cursor to get the sequence for claim_line_id
1289: CURSOR c_claim_line_seq IS
1290: SELECT ozf_claim_lines_all_s.NEXTVAL 1291: FROM DUAL; 1292:
1293: -- Cursor to validate the uniqueness of the claim_line_id
1294: CURSOR c_claim_line_count(cv_claim_line_id IN NUMBER) IS
1295: SELECT COUNT(claim_line_id)