DBA Data[Home] [Help]

APPS.BIV_DBI_COLLECTION_UTIL dependencies on BIV_DBI_COLLECTION_LOG

Line 97: update biv_dbi_collection_log

93: , p_backlog_error in varchar2 default null
94: , p_resolution_error in varchar2 default null
95: ) as
96: begin
97: update biv_dbi_collection_log
98: set staging_error_message = decode(p_staging_error, null, staging_error_message
99: , p_staging_error)
100: , activity_error_message = decode(p_activity_error, null, activity_error_message
101: , p_activity_error)

Line 115: bis_collection_utilities.log('Unable to update biv_dbi_collection_log with error:');

111: where rowid = p_rowid;
112:
113: exception
114: when others then
115: bis_collection_utilities.log('Unable to update biv_dbi_collection_log with error:');
116: bis_collection_utilities.log(sqlerrm,1);
117:
118: end set_log_error;
119:

Line 146: biv_dbi_collection_log

142: , closed_flag
143: , backlog_flag
144: , resolution_flag
145: from
146: biv_dbi_collection_log
147: where
148: last_collection_flag = 'Y';
149:
150: begin