[Home] [Help]
525: ----------------------------------------------------------------
526: -- Cursor to check if panel member exists.
527: CURSOR c_panel_membr_exist IS
528: SELECT 'x'
529: FROM igs_ad_panel_membrs pm
530: WHERE pm.panel_code = new_references.panel_code;
531: l_panel_membr_exist VARCHAR2(1);
532:
533: -- Cursor to get all the history records associated to panel decision.
940:
941: -- Cursor to get all the panel members associated to panel code.
942: CURSOR c_get_panel_membrs IS
943: SELECT *
944: FROM igs_ad_panel_membrs pm
945: WHERE pm.panel_code = new_references.panel_code;
946:
947: rec_panel_membrs c_get_panel_membrs%ROWTYPE;
948: