DBA Data[Home] [Help]

APPS.EAM_WO_NETWORK_UTIL_PVT dependencies on EAM_PROCESS_WO_PVT

Line 318: l_eam_wo_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;

314: l_eam_wo_rec.organization_id := child.ORGANIZATION_ID;
315: l_eam_wo_rec.scheduled_start_date := child.SCHEDULED_START_DATE + l_offset_days;
316: l_eam_wo_rec.scheduled_completion_date := child.SCHEDULED_COMPLETION_DATE + l_offset_days;
317: l_eam_wo_rec.validate_structure := 'Y'; -- added for bug# 3544860
318: l_eam_wo_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;
319:
320: if p_schedule_method = 1 then -- forward sched
321: l_eam_wo_rec.requested_start_date := child.scheduled_start_date + l_offset_days;
322: l_eam_wo_rec.due_date := null;

Line 340: l_eam_op_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;

336: l_eam_op_rec.organization_id := child.ORGANIZATION_ID;
337: l_eam_op_rec.operation_seq_num := operation.operation_seq_num;
338: l_eam_op_rec.start_date := operation.START_DATE + l_offset_days;
339: l_eam_op_rec.completion_date := operation.COMPLETION_DATE + l_offset_days;
340: l_eam_op_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;
341: l_eam_op_rec.description := operation.description;
342: l_eam_op_rec.long_description := operation.long_description;
343:
344: l_eam_op_tbl(l_operation_index) := l_eam_op_rec;

Line 361: l_eam_mat_req_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;

357: l_eam_mat_req_rec.organization_id := child.ORGANIZATION_ID;
358: l_eam_mat_req_rec.inventory_item_id := material.INVENTORY_ITEM_ID;
359: l_eam_mat_req_rec.operation_seq_num := material.OPERATION_SEQ_NUM;
360: l_eam_mat_req_rec.date_required := material.DATE_REQUIRED + l_offset_days;
361: l_eam_mat_req_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;
362:
363: l_eam_mat_req_tbl(l_material_index) := l_eam_mat_req_rec;
364: l_material_index := l_material_index + 1;
365: END IF;

Line 379: l_eam_res_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;

375: l_eam_res_rec.operation_seq_num := res.operation_seq_num;
376: l_eam_res_rec.resource_seq_num := res.resource_seq_num;
377: l_eam_res_rec.start_date := res.START_DATE + l_offset_days;
378: l_eam_res_rec.completion_date := res.COMPLETION_DATE + l_offset_days;
379: l_eam_res_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;
380:
381: l_eam_res_tbl(l_resource_index) := l_eam_res_rec;
382: l_resource_index := l_resource_index + 1;
383: END LOOP;

Line 397: l_eam_res_inst_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;

393: l_eam_res_inst_rec.instance_id := res_inst.instance_id;
394: l_eam_res_inst_rec.serial_number := res_inst.serial_number;
395: l_eam_res_inst_rec.start_date := res_inst.START_DATE + l_offset_days;
396: l_eam_res_inst_rec.completion_date := res_inst.COMPLETION_DATE + l_offset_days;
397: l_eam_res_inst_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;
398:
399: l_eam_res_inst_tbl(l_res_inst_index) := l_eam_res_inst_rec;
400: l_res_inst_index := l_res_inst_index + 1;
401:

Line 421: l_eam_res_usage_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;

417: l_eam_res_usage_rec.old_completion_date := res_usage.COMPLETION_DATE ;
418:
419: l_eam_res_usage_rec.start_date := res_usage.START_DATE + l_offset_days;
420: l_eam_res_usage_rec.completion_date := res_usage.COMPLETION_DATE + l_offset_days;
421: l_eam_res_usage_rec.transaction_type := EAM_PROCESS_WO_PVT.G_OPR_UPDATE;
422:
423: l_eam_res_usage_tbl(l_res_usage_index) := l_eam_res_usage_rec;
424: l_res_usage_index := l_res_usage_index + 1;
425: END LOOP;