[Home] [Help]
49: CURSOR get_model_and_ata_csr(c_relationship_id NUMBER) IS
50: SELECT model_code,
51: ata_code
52: FROM ahl_mc_headers_b hdr,
53: ahl_mc_relationships rel
54: WHERE rel.relationship_id = c_relationship_id
55: AND rel.mc_header_id = hdr.mc_header_id;
56:
57: CURSOR get_model_and_tail_csr(c_uc_header_id NUMBER) IS