DBA Data[Home] [Help]

PACKAGE: APPS.WIP_CALENDAR

Source


1 PACKAGE WIP_CALENDAR AUTHID CURRENT_USER AS
2 /* $Header: wipltess.pls 120.0 2005/05/25 08:44:12 appldev noship $ */
3 
4   PROCEDURE ESTIMATE_LEADTIME
5 	   (x_org_id      in number,
6             x_fixed_lead  in number DEFAULT 0,
7             x_var_lead    in number DEFAULT 0,
8             x_quantity    in number,
9             x_proc_days   in number,
10             x_entity_type in number,
11             x_fusd        in date,
12             x_fucd        in date,
13             x_lusd        in date,
14             x_lucd        in date,
15             x_sched_dir   in number,
16             x_est_date    out nocopy date);
17 
18 END WIP_CALENDAR;