DBA Data[Home] [Help]

APPS.BIV_DBI_BAK_AGE_PKG dependencies on BIS_REFRESH_LOG

Line 1232: from bis_refresh_log

1228: last_refresh_date date;
1229:
1230: BEGIN
1231: select last_update_date into last_refresh_date
1232: from bis_refresh_log
1233: where object_name = p_object_name and status='SUCCESS'
1234: and last_update_date =( select max(last_update_date)
1235: from bis_refresh_log
1236: where object_name= p_object_name and status='SUCCESS' );

Line 1235: from bis_refresh_log

1231: select last_update_date into last_refresh_date
1232: from bis_refresh_log
1233: where object_name = p_object_name and status='SUCCESS'
1234: and last_update_date =( select max(last_update_date)
1235: from bis_refresh_log
1236: where object_name= p_object_name and status='SUCCESS' );
1237:
1238: return last_refresh_date;
1239: