DBA Data[Home] [Help]

APPS.IGS_UC_PROC_APPLICATION_DATA dependencies on IGS_UC_ISTMNT_INTS

Line 4580: FROM igs_uc_istmnt_ints ivstmt

4576:
4577: CURSOR new_ivstmnt_cur IS
4578: SELECT ivstmt.rowid,
4579: ivstmt.*
4580: FROM igs_uc_istmnt_ints ivstmt
4581: WHERE ivstmt.record_status = 'N';
4582:
4583:
4584: CURSOR old_stmt_cur(p_appno igs_uc_app_choices.app_no%TYPE) IS

Line 4798: UPDATE igs_uc_istmnt_ints

4794: -- update the interface table rec - record_status if successfully processed or Error Code if any error encountered
4795: -- while processing the record.
4796: IF g_error_code IS NOT NULL THEN
4797:
4798: UPDATE igs_uc_istmnt_ints
4799: SET error_code = g_error_code
4800: WHERE rowid = new_ivstmt_rec.rowid;
4801:
4802: -- log error message/meaning.

Line 4810: UPDATE igs_uc_istmnt_ints

4806: g_error_rec_cnt := g_error_rec_cnt + 1;
4807:
4808: ELSE
4809:
4810: UPDATE igs_uc_istmnt_ints
4811: SET record_status = 'D',
4812: error_code = NULL
4813: WHERE rowid = new_ivstmt_rec.rowid;
4814: