DBA Data[Home] [Help]

PACKAGE: APPS.WIP_OPERATION_DEFAULT

Source


1 Package WIP_OPERATION_DEFAULT AUTHID CURRENT_USER as
2 /* $Header: wipopdfs.pls 115.6 2002/11/29 09:33:21 rmahidha ship $ */
3 
4 Procedure Default_Operations(p_group_id  in number,
5                              p_parent_header_id in number,
6                              p_wip_entity_id    in number,
7                              p_organization_id  in number,
8                              p_substitution_type in number,
9                              x_err_code out nocopy varchar2,
10                              x_err_msg out nocopy varchar2,
11                              x_return_status out nocopy varchar2 );
12 
13 PROCEDURE Default_Oper  (p_group_id in number,
14                             p_parent_header_id in number := NULL,
15                             p_wip_entity_id number,
16                             p_organization_id number,
17                             p_operation_seq_num number,
18                             p_substitution_type number,
19                             p_description varchar2 := NULL,
20                             p_department_id number := NULL,
21                             p_standard_operation_id number:=NULL,
22                             p_fusd date := NULL,
23                             p_fucd date := NULL,
24                             p_lusd date := NULL,
25                             p_lucd date := NULL,
26                             p_min_xfer_qty number := NULL,
27                             p_count_point number := NULL,
28                             p_backflush_flag number := NULL,
29                             x_err_code out nocopy varchar2,
30                             x_err_msg out nocopy varchar2,
31                             x_return_status out nocopy varchar2 );
32 
33 END WIP_OPERATION_DEFAULT;