DBA Data[Home] [Help]

APPS.IGS_UC_PROC_APPLICATION_DATA dependencies on IGS_UC_ISTART_INTS

Line 4060: FROM igs_uc_istart_ints ivstt

4056:
4057: CURSOR new_ivstart_cur IS
4058: SELECT ivstt.rowid,
4059: ivstt.*
4060: FROM igs_uc_istart_ints ivstt
4061: WHERE record_status = 'N';
4062:
4063:
4064: CURSOR old_start_cur(p_appno igs_uc_app_choices.app_no%TYPE) IS

Line 4269: UPDATE igs_uc_istart_ints

4265: -- update the interface table rec - record_status if successfully processed or Error Code if any error encountered
4266: -- while processing the record.
4267: IF g_error_code IS NOT NULL THEN
4268:
4269: UPDATE igs_uc_istart_ints
4270: SET error_code = g_error_code
4271: WHERE rowid = new_ivstart_rec.rowid;
4272:
4273: -- log error message/meaning.

Line 4281: UPDATE igs_uc_istart_ints

4277: g_error_rec_cnt := g_error_rec_cnt + 1;
4278:
4279: ELSE
4280:
4281: UPDATE igs_uc_istart_ints
4282: SET record_status = 'D',
4283: error_code = NULL
4284: WHERE rowid = new_ivstart_rec.rowid;
4285: