DBA Data[Home] [Help]

APPS.EAM_MATERIAL_REQUEST_PVT dependencies on WIP_CONSTANTS

Line 134: p_wip_entity_type => wip_constants.eam,

130: 'Calling wip_picking_pub.allocate_comp');
131: end if;
132: wip_picking_pub.allocate_comp(p_alloc_comp_tbl => allocate_table,
133: p_cutoff_date => null,
134: p_wip_entity_type => wip_constants.eam,
135: p_organization_id => p_organization_id,
136: x_return_status => l_return_status,
137: x_msg_data => l_msg_data,
138: x_mo_req_number => x_request_number,

Line 354: if(p_wip_entity_type = wip_constants.eam) then

350: ELSE
351: l_auto_req_param := 'Y';
352: END IF;
353:
354: if(p_wip_entity_type = wip_constants.eam) then
355: --Added for opening the eAM Cursor (Added for eAM Enhancement 13608137 )
356: open c_eam_jobs(l_auto_req_param);
357: end if;
358:

Line 441: if(p_wip_entity_type = wip_constants.discrete) then

437:
438:
439: /* Bug 6046963: Added below if to print job type parameter in case of Discrete Job Comp Pick Release request only*/
440:
441: if(p_wip_entity_type = wip_constants.discrete) then
442: --Start - Bug 5932126 (FP of 5880558): Added following code to print new parameter for job type
443: select meaning
444: into l_outBuffer
445: from mfg_lookups

Line 459: IF(p_wip_entity_type = wip_constants.eam) THEN

455: fnd_file.put_line(which => fnd_file.output, buff => '');
456:
457: LOOP
458:
459: IF(p_wip_entity_type = wip_constants.eam) THEN
460:
461: fetch c_eam_jobs into l_wipEntityID, l_outBuffer,l_op_seq,l_inv_item_id, l_projectID, l_taskID, l_eam_wro_date_req, l_requested_qty;
462: exit when c_eam_jobs%NOTFOUND;
463: end if;

Line 467: if(p_wip_entity_type = wip_constants.eam) THEN

463: end if;
464:
465: fnd_file.put_line(which => fnd_file.output, buff => l_outBuffer);
466: --Added for eAM Enhancement 13608137
467: if(p_wip_entity_type = wip_constants.eam) THEN
468: eam_i := eam_i + 1;
469: l_alloc_comp_tbl_t(eam_i).wip_entity_id := l_wipEntityID;
470: l_alloc_comp_tbl_t(eam_i).repetitive_schedule_id := l_repSchedID;
471: l_alloc_comp_tbl_t(eam_i).operation_seq_num := l_op_seq;