DBA Data[Home] [Help]

APPS.IGS_EN_GEN_017 dependencies on IGS_EN_METHOD_TYPE

Line 611: || Note: After this modification at no place the IGS_EN_METHOD_TYPE should be

607: || validated to be a valid method. The setup is done in IGSEN015 form. If no
608: || method type is found then error is returned. The procedure can be expanded
609: || later to other methods of enrollment as and when the requirement arises.
610: || 'SS' and 'IVR' are codes used internally hence not seeded.
611: || Note: After this modification at no place the IGS_EN_METHOD_TYPE should be
612: || used directly to get the enrollment method type. This procedure should be invoked.
613: ||
614: || Known limitations, enhancements or remarks :
615: || Change History :

Line 623: FROM igs_en_method_type

619: || if g_invoke_source set to 'JOB' w.r.t bug 3829270
620: */
621: CURSOR cur_ss IS
622: SELECT enr_method_type
623: FROM igs_en_method_type
624: WHERE self_service = 'Y'
625: AND closed_ind = 'N';
626: l_rec_ss cur_ss%ROWTYPE;
627:

Line 630: FROM igs_en_method_type

626: l_rec_ss cur_ss%ROWTYPE;
627:
628: CURSOR cur_ivr IS
629: SELECT enr_method_type
630: FROM igs_en_method_type
631: WHERE ivr_display_ind = 'Y'
632: AND closed_ind = 'N';
633: l_rec_ivr cur_ivr%ROWTYPE;
634:

Line 637: FROM igs_en_method_type

633: l_rec_ivr cur_ivr%ROWTYPE;
634:
635: CURSOR cur_bulkjob IS
636: SELECT enr_method_type
637: FROM igs_en_method_type
638: WHERE bulk_job_ind = 'Y'
639: AND closed_ind = 'N';
640: l_rec_bulk cur_bulkjob%ROWTYPE;
641: