DBA Data[Home] [Help]

APPS.IGS_UC_PROC_APPLICATION_DATA dependencies on IGS_UC_IQUAL_INTS

Line 4319: FROM igs_uc_iqual_ints ivqual

4315:
4316: CURSOR new_ivqual_cur IS
4317: SELECT ivqual.rowid,
4318: ivqual.*
4319: FROM igs_uc_iqual_ints ivqual
4320: WHERE ivqual.record_status = 'N';
4321:
4322:
4323: CURSOR old_qual_cur(p_appno igs_uc_app_choices.app_no%TYPE) IS

Line 4527: UPDATE igs_uc_iqual_ints

4523: -- update the interface table rec - record_status if successfully processed or Error Code if any error encountered
4524: -- while processing the record.
4525: IF g_error_code IS NOT NULL THEN
4526:
4527: UPDATE igs_uc_iqual_ints
4528: SET error_code = g_error_code
4529: WHERE rowid = new_ivqual_rec.rowid;
4530:
4531: -- log error message/meaning.

Line 4539: UPDATE igs_uc_iqual_ints

4535: g_error_rec_cnt := g_error_rec_cnt + 1;
4536:
4537: ELSE
4538:
4539: UPDATE igs_uc_iqual_ints
4540: SET record_status = 'D',
4541: error_code = NULL
4542: WHERE rowid = new_ivqual_rec.rowid;
4543: