DBA Data[Home] [Help]

APPS.WIP_VALIDATEMLHEADER_PVT dependencies on WIP_CALENDAR

Line 3365: wip_calendar.estimate_leadtime(x_org_id => wjsi_row.organization_id,

3361: else
3362: l_schedDir := wip_constants.lucd;
3363: end if;
3364:
3365: wip_calendar.estimate_leadtime(x_org_id => wjsi_row.organization_id,
3366: x_fixed_lead => primary_item_row.fixed_lead_time,
3367: x_var_lead => primary_item_row.variable_lead_time,
3368: x_quantity => wjsi_row.processing_work_days * wjsi_row.daily_production_rate,
3369: x_proc_days => wjsi_row.processing_work_days,

Line 3435: wip_calendar.estimate_leadtime(x_org_id => wjsi_row.organization_id,

3431: if(wjsi_row.first_unit_start_date is null and
3432: wjsi_row.last_unit_completion_date is not null and
3433: wjsi_row.scheduling_method = wip_constants.leadtime) then
3434: /* Estimate Start Date */
3435: wip_calendar.estimate_leadtime(x_org_id => wjsi_row.organization_id,
3436: x_fixed_lead => primary_item_row.fixed_lead_time,
3437: x_var_lead => primary_item_row.variable_lead_time,
3438: x_quantity => l_qty,
3439: x_proc_days => 0,

Line 3455: wip_calendar.estimate_leadtime(x_org_id => wjsi_row.organization_id,

3451: elsif(wjsi_row.last_unit_completion_date is null and
3452: wjsi_row.first_unit_start_date is not null and
3453: wjsi_row.scheduling_method = wip_constants.leadtime) then
3454: /* Estimate Completion Date */
3455: wip_calendar.estimate_leadtime(x_org_id => wjsi_row.organization_id,
3456: x_fixed_lead => primary_item_row.fixed_lead_time,
3457: x_var_lead => primary_item_row.variable_lead_time,
3458: x_quantity => l_qty,
3459: x_proc_days => 0,

Line 3482: wip_calendar.estimate_leadtime(x_org_id => wjsi_row.organization_id,

3478: from wip_discrete_jobs wdj
3479: where wdj.wip_entity_id = wjsi_row.wip_entity_id;
3480:
3481: /* Estimate Completion Date */
3482: wip_calendar.estimate_leadtime(x_org_id => wjsi_row.organization_id,
3483: x_fixed_lead => primary_item_row.fixed_lead_time,
3484: x_var_lead => primary_item_row.variable_lead_time,
3485: x_quantity => l_qty,
3486: x_proc_days => 0,