DBA Data[Home] [Help]

APPS.IGS_AD_ASSIGN_REVIEW_GRP dependencies on IGS_AD_RVGR_INC_EXC

Line 50: FROM igs_ad_rvgr_inc_exc

46: -- Cursor to fetch the Inclusion and Exclusion Values given
47: -- the Review Group Id and the Inclusion Exclusion Indicator
48: CURSOR c_revgr_incl_excl(cp_appl_revprof_revgr_id NUMBER,cp_incl_excl_ind VARCHAR2) IS
49: SELECT *
50: FROM igs_ad_rvgr_inc_exc
51: WHERE appl_revprof_revgr_id = cp_appl_revprof_revgr_id
52: AND incl_excl_ind = cp_incl_excl_ind;
53:
54: c_revgr_incl_excl_rec c_revgr_incl_excl%ROWTYPE;

Line 60: FROM igs_ad_rvgr_inc_exc

56: -- Cursor to fetch the Inclusion and Exclusion Values given
57: -- the Review Group Id For the Address
58: CURSOR c_revgr_addr(cp_appl_revprof_revgr_id NUMBER) IS
59: SELECT *
60: FROM igs_ad_rvgr_inc_exc
61: WHERE appl_revprof_revgr_id = cp_appl_revprof_revgr_id ;
62:
63: c_revgr_addr_rec c_revgr_addr%ROWTYPE;
64: