DBA Data[Home] [Help]

PACKAGE: APPS.WMS_RULE_PVT_EXT_PSETJ

Source


1 package wms_rule_pvt_ext_psetj AUTHID CURRENT_USER as
2 /* $Header: WMSOPPAS.pls 115.2 2003/08/25 19:06:13 joabraha noship $ */
3 --
4 -- API name    : Assign_operation_plan
5 -- Type        : Private
6 -- Function    : Assign operation_plan to a specific record in MMTT
7 -- Input Parameters  :
8 --           p_task_id NUMBER
9 --
10 -- Output Parameters:
11 -- Version     :
12 -- Current version 1.0
13 --
14 -- Notes       :
15 -- Date           Modification                                   Author
16 -- ------------   ------------                                   ------------------
17 -- 08 Aug. 2003   Added 2 new input parameters in patchset 'J'.  By Johnson Abraham.
18 --                p_activity_type_id and p_organization_id.
19 --                For Inbound ATF, the  p_activity_type_id
20 --                will be passed in as a mandatory input
21 --                parameter.
22 --                The call to Outbound ATF will continue
23 --                via the wrapper 'assign_operation_plans'.
24 --                The change to the wrapper is that now
25 --                organization_id is also derived and hence
26 --                passed in to the 'assign_operation_plans'.
27 PROCEDURE assign_operation_plan_psetj(
28    p_api_version                  IN   NUMBER,
29    p_init_msg_list                IN   VARCHAR2 DEFAULT fnd_api.g_false,
30    p_commit                       IN   VARCHAR2 DEFAULT fnd_api.g_false,
31    p_validation_level             IN   NUMBER   DEFAULT fnd_api.g_valid_level_full,
32    x_return_status                OUT  NOCOPY VARCHAR2,
33    x_msg_count                    OUT  NOCOPY NUMBER,
34    x_msg_data                     OUT  NOCOPY VARCHAR2,
35    p_task_id                      IN   NUMBER,
36    p_activity_type_id             IN   NUMBER   DEFAULT NULL,     -- Added in patchset 'J' for the ATF Inbound project.
37    p_organization_id		  IN   NUMBER   DEFAULT NULL);    -- Added in patchset 'J' for the ATF Inbound project.
38 --
39 --
40 
41 end wms_rule_pvt_ext_psetj;