DBA Data[Home] [Help]

APPS.AHL_OSP_ACCOMP_PVT dependencies on AHL_COMPLETIONS_PVT

Line 220: l_reset_counter_tbl AHL_COMPLETIONS_PVT.counter_tbl_type;

216: l_instance_id NUMBER;
217: l_ue_ovn NUMBER;
218: i NUMBER;
219:
220: l_reset_counter_tbl AHL_COMPLETIONS_PVT.counter_tbl_type;
221: l_mr_rec AHL_COMPLETIONS_PVT.mr_rec_type;
222: l_counter_tbl AHL_COMPLETIONS_PVT.counter_tbl_type;
223:
224: TYPE NUM_TBL_TYPE IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;

Line 221: l_mr_rec AHL_COMPLETIONS_PVT.mr_rec_type;

217: l_ue_ovn NUMBER;
218: i NUMBER;
219:
220: l_reset_counter_tbl AHL_COMPLETIONS_PVT.counter_tbl_type;
221: l_mr_rec AHL_COMPLETIONS_PVT.mr_rec_type;
222: l_counter_tbl AHL_COMPLETIONS_PVT.counter_tbl_type;
223:
224: TYPE NUM_TBL_TYPE IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
225: l_child_ue_ids_tbl NUM_TBL_TYPE;

Line 222: l_counter_tbl AHL_COMPLETIONS_PVT.counter_tbl_type;

218: i NUMBER;
219:
220: l_reset_counter_tbl AHL_COMPLETIONS_PVT.counter_tbl_type;
221: l_mr_rec AHL_COMPLETIONS_PVT.mr_rec_type;
222: l_counter_tbl AHL_COMPLETIONS_PVT.counter_tbl_type;
223:
224: TYPE NUM_TBL_TYPE IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
225: l_child_ue_ids_tbl NUM_TBL_TYPE;
226:

Line 277: l_return_status := AHL_COMPLETIONS_PVT.get_reset_counters(p_mr_header_id => l_mr_id,

273: CLOSE get_ue_dtls_csr;
274:
275: -- Get the Reset Counter Readings for all Counters associted with the MR and the Item Instance.
276: IF (l_mr_id IS NOT NULL) THEN
277: l_return_status := AHL_COMPLETIONS_PVT.get_reset_counters(p_mr_header_id => l_mr_id,
278: p_item_instance_id => l_instance_id,
279: p_actual_date => p_accomplishment_date,
280: x_counter_tbl => l_reset_counter_tbl);
281: END IF;

Line 296: l_return_status := AHL_COMPLETIONS_PVT.reset_counters(p_mr_rec => l_mr_rec,

292: END IF;
293: -- Reset all the Counters with Reset Values specified in FMP
294: l_mr_rec.mr_header_id := l_mr_id;
295: l_mr_rec.unit_effectivity_id := l_child_ue_ids_tbl(i);
296: l_return_status := AHL_COMPLETIONS_PVT.reset_counters(p_mr_rec => l_mr_rec,
297: p_x_counter_tbl => l_reset_counter_tbl,
298: p_actual_end_date => p_accomplishment_date,
299: x_msg_count => l_msg_count,
300: x_msg_data => l_msg_data);

Line 319: l_return_status := AHL_COMPLETIONS_PVT.get_cp_counters(p_item_instance_id => l_instance_id,

315: IF (l_log_statement >= l_log_current_level) THEN
316: FND_LOG.STRING(l_log_statement, L_FULL_NAME, 'Getting CP Counters...');
317: END IF;
318: -- Get the Current Counter Readings for all Counters associted with the Item Instance.
319: l_return_status := AHL_COMPLETIONS_PVT.get_cp_counters(p_item_instance_id => l_instance_id,
320: p_wip_entity_id => null,
321: p_actual_date => p_accomplishment_date,
322: x_counter_tbl => l_counter_tbl);
323: IF (l_return_status = FND_API.G_RET_STS_ERROR) THEN

Line 333: l_return_status := AHL_COMPLETIONS_PVT.update_ump(p_unit_effectivity_id => l_child_ue_ids_tbl(i),

329: IF (l_log_statement >= l_log_current_level) THEN
330: FND_LOG.STRING(l_log_statement, L_FULL_NAME, 'Updating UMP...');
331: END IF;
332: -- Record Accomplishment in UMP
333: l_return_status := AHL_COMPLETIONS_PVT.update_ump(p_unit_effectivity_id => l_child_ue_ids_tbl(i),
334: p_ue_object_version => l_ue_ovn,
335: p_actual_end_date => p_accomplishment_date,
336: p_counter_tbl => l_counter_tbl,
337: p_dml_flag => 'C',