DBA Data[Home] [Help]

APPS.IGS_FI_BALANCES_HST_PKG dependencies on IGS_FI_BALANCES_HST_S

Line 258: || shtatiko 27-FEB-2003 Bug# 2815373, Next value of the sequence (igs_fi_balances_hst_s.NEXTVAL)

254: || Purpose : Handles the INSERT DML logic for the table.
255: || Known limitations, enhancements or remarks :
256: || Change History :
257: || Who When What
258: || shtatiko 27-FEB-2003 Bug# 2815373, Next value of the sequence (igs_fi_balances_hst_s.NEXTVAL)
259: || is fetched before the call to before_dml. Previously, this was done in the
260: || insert statement itself.
261: || (reverse chronological order - newest change first)
262: */

Line 308: SELECT igs_fi_balances_hst_s.NEXTVAL INTO x_balance_hist_id

304:
305: -- Added this as part of Bug fix 2815373.
306: -- Sequence's NEXTVAL should be fetched before calling before_dml.
307:
308: SELECT igs_fi_balances_hst_s.NEXTVAL INTO x_balance_hist_id
309: FROM dual;
310:
311: -- Fetched value is passed to before_dml so that check for existence of id is done for the
312: -- newly generated Id.