DBA Data[Home] [Help]

APPS.IGS_UC_MV_IMP_ERRCD dependencies on IGS_UC_REF_CODES_PKG

Line 113: igs_uc_ref_codes_pkg.Insert_Row (

109: IF refcodes_cur%NOTFOUND THEN
110: l_rowid := NULL;
111:
112: --Call the TBH of the main table to insert a new error code.
113: igs_uc_ref_codes_pkg.Insert_Row (
114: X_ROWID => l_rowid,
115: X_CODE_TYPE => 'EC',
116: X_CODE => TO_NUMBER(err_proc_rec.error_code),
117: X_CODE_TEXT => err_proc_rec.code_text,

Line 124: igs_uc_ref_codes_pkg.update_row (

120: l_success_cnt := l_success_cnt + 1;
121:
122: ELSE
123: --Call the TBH of the main table to update the existing error code.
124: igs_uc_ref_codes_pkg.update_row (
125: X_ROWID => refcodes_rec.rowid,
126: X_CODE_TYPE => refcodes_rec.code_type,
127: X_CODE => refcodes_rec.code,
128: X_CODE_TEXT => err_proc_rec.code_text,