DBA Data[Home] [Help]

APPS.BIM_CAMPAIGN_FACTS dependencies on BIM_REP_HISTORY

Line 168: FROM bim_rep_history

164: /* Find if the data will be loaded for the first time or not.*/
165: DECLARE
166: CURSOR chk_history_data IS
167: SELECT MAX(end_date)
168: FROM bim_rep_history
169: WHERE object = 'CAMPAIGN';
170:
171: BEGIN
172: OPEN chk_history_data;

Line 364: INSERT INTO bim_rep_history

360: -- Initialize API return status to SUCCESS
361: x_return_status := FND_API.G_RET_STS_SUCCESS;
362: */
363:
364: INSERT INTO bim_rep_history
365: (CREATION_DATE,
366: LAST_UPDATE_DATE,
367: CREATED_BY,
368: LAST_UPDATED_BY,

Line 2712: FROM bim_rep_history

2708: AND a.index_name like 'BIM_R_CAMP_%FACTS%';
2709:
2710: CURSOR chk_history_data IS
2711: SELECT MIN(start_date)
2712: FROM bim_rep_history
2713: WHERE object = 'CAMPAIGN';
2714:
2715: l_min_date date;
2716: