DBA Data[Home] [Help]

PACKAGE: APPS.WSH_BULK_PROCESS_GRP

Source


1 PACKAGE WSH_BULK_PROCESS_GRP as
2 /* $Header: WSHBPGPS.pls 120.0.12000000.1 2007/01/16 05:42:18 appldev ship $ */
3 
4 
5 --===================
6 -- PUBLIC VARS
7 --===================
8 
9 
10 
11 --========================================================================
12 -- PROCEDURE : Create_update_delivery_details
13 --
14 -- PARAMETERS: p_api_version_number    known api versionerror buffer
15 --             p_init_msg_list         FND_API.G_TRUE to reset list
16 --             x_return_status         return status
17 --             x_msg_count             number of messages in the list
18 --             x_msg_data              text of messages
19 --             p_commit                FND_API.G_TRUE to perform a commit
20 --	       p_action_prms           Additional attributes needed
21 --	       x_Out_Rec               Place holder
22 --	       p_line_rec              Line record
23 -- VERSION   : current version         1.0
24 --             initial version         1.0
25 -- COMMENT   : This API is called from ONT to import delivery details and
26 --              delivery_assignments
27 --              At this time only insert operation (action='CREATE') is
28 --              supported for OM lines.
29 --========================================================================
30   PROCEDURE Create_update_delivery_details(
31                   p_api_version_number IN   NUMBER,
32                   p_init_msg_list          IN   VARCHAR2,
33                   p_commit         IN   VARCHAR2,
34                   p_action_prms      IN
35                               WSH_BULK_TYPES_GRP.action_parameters_rectype,
36                   p_line_rec  IN OUT NOCOPY OE_WSH_BULK_GRP.Line_rec_type,
37                   x_Out_Rec               OUT NOCOPY
38                                 WSH_BULK_TYPES_GRP.Bulk_process_out_rec_type,
39                   x_return_status          OUT  NOCOPY VARCHAR2,
40                   x_msg_count              OUT  NOCOPY NUMBER,
41                   x_msg_data               OUT  NOCOPY VARCHAR2
42   );
43 
44 END WSH_bulk_process_grp;