DBA Data[Home] [Help]

APPS.FND_OAM_DSCFG_COMPILER_PKG dependencies on FND_OAM_DSCRAM_RUNS_B

Line 1709: INSERT INTO FND_OAM_DSCRAM_RUNS_B (RUN_ID,

1705: FROM v$database
1706: WHERE rownum < 2;
1707:
1708: --at this point insert a new run, we'll update the weight later
1709: INSERT INTO FND_OAM_DSCRAM_RUNS_B (RUN_ID,
1710: RUN_STATUS,
1711: RUN_MODE,
1712: TARGET_DBNAME,
1713: CONFIG_INSTANCE_ID,

Line 3251: UPDATE fnd_oam_dscram_runs_b

3247: END LOOP;
3248:
3249: l_weight := NVL(b_run.weight, b_run.assigned_physical_weight);
3250: fnd_oam_debug.log(1, l_ctxt, 'Updating run_id('||b_run.run_id||') weight ('||l_weight||')');
3251: UPDATE fnd_oam_dscram_runs_b
3252: SET weight = l_weight
3253: WHERE run_id = b_run.run_id;
3254:
3255: COMMIT;