DBA Data[Home] [Help]

PACKAGE: APPS.WMS_WP_CUSTOM_APIS_PUB

Source


1 PACKAGE wms_wp_custom_apis_pub AUTHID CURRENT_USER as
2 /* $Header: WMSWPCAS.pls 120.3 2011/04/19 23:09:34 adyeh noship $ */
3 
4 
5 PROCEDURE create_wave_lines_cust(p_wave_header_id                   NUMBER,
6                                      x_api_is_implemented         OUT   NOCOPY BOOLEAN,
7                                      x_custom_line_tbl            OUT   NOCOPY wms_wave_planning_pvt.line_tbl_typ,
8                                      x_custom_line_action_tbl     OUT   NOCOPY wms_wave_planning_pvt.action_tbl_typ,
9                                      x_return_status              OUT 	NOCOPY VARCHAR2,
10                                      x_msg_count                  OUT 	NOCOPY NUMBER,
11                                      x_msg_data                   OUT 	NOCOPY VARCHAR2);
12 
13 PROCEDURE Get_wave_exceptions_cust(x_api_is_implemented           OUT   NOCOPY BOOLEAN,
14                                    p_exception_name               IN VARCHAR2,
15                                    p_organization_id              IN NUMBER,
16                                    p_wave                         IN NUMBER,
17                                    p_exception_entity             IN VARCHAR2,
18                                    p_progress_stage               IN VARCHAR2,
19                                    p_completion_threshold         IN NUMBER,
20                                    p_high_sev_exception_threshold IN NUMBER,
21                                    p_low_sev_exception_threshold  IN NUMBER,
22                                    p_take_corrective_measures     IN VARCHAR2,
23                                    p_release_back_ordered_lines   IN VARCHAR2,
24                                    p_action_name                  IN VARCHAR2,
25                                    x_return_status              OUT 	NOCOPY VARCHAR2,
26                                    x_msg_count                  OUT 	NOCOPY NUMBER,
27                                    x_msg_data                   OUT 	NOCOPY VARCHAR2);
28 
29 PROCEDURE task_release_cust(p_organization_id            IN NUMBER,
30                             p_custom_plan_tolerance      IN NUMBER,
31                             p_final_mmtt_table           IN OUT nocopy wms_wave_planning_pvt.num_t, --11870443
32                             x_return_status              OUT 	NOCOPY VARCHAR2,
33                             x_msg_count                  OUT 	NOCOPY NUMBER,
34                             x_msg_data                   OUT 	NOCOPY VARCHAR2
35                            );
36 
37 END wms_wp_custom_apis_pub;
38