DBA Data[Home] [Help]

APPS.IGS_PS_GEN_008 dependencies on IGS_GE_S_LOG_PKG

Line 3128: igs_ge_s_log_pkg.insert_row( x_rowid => l_rowid ,

3124: --Added by sarakshi, as a part of bug#2332807
3125: --If any error condition occurs , from the exception handlers we are inserting to igs_ge_s_log_entry table
3126: --which is child table so here inserting in the parent table first which is to be deleted if no child
3127: --entries are found
3128: igs_ge_s_log_pkg.insert_row( x_rowid => l_rowid ,
3129: x_s_log_type => 'USEC-ROLL',
3130: x_creation_dt =>p_log_creation_date,
3131: x_key =>NULL,
3132: x_mode => 'R' );

Line 3827: igs_ge_s_log_pkg.delete_row(x_rowid=>l_rowid);

3823: --then delete the parent record.
3824: OPEN cur_check(p_log_creation_date);
3825: FETCH cur_check INTO l_var;
3826: IF cur_check%NOTFOUND THEN
3827: igs_ge_s_log_pkg.delete_row(x_rowid=>l_rowid);
3828: END IF;
3829: CLOSE cur_check;
3830:
3831: RETURN v_ret_val;