DBA Data[Home] [Help]

PACKAGE: APPS.CLN_NOTIFY_SHIPCONF_PKG

Source


1 PACKAGE CLN_NOTIFY_SHIPCONF_PKG AUTHID CURRENT_USER AS
2 /* $Header: CLNNTSHS.pls 115.3 2003/11/19 06:01:16 rkrishan noship $ */
3 
4 --  Package
5 --      CLN_NOTIFY_SHIPCONF_PKG
6 --
7 --  Purpose
8 --      Specs of package CLN_NOTIFY_SHIPCONF_PKG.
9 --
10 --  History
11 --      July-21-2003        Rahul Krishan         Created
12 
13 
14    -- Name
15    --    RAISE_UPDATE_EVENT
16    -- Purpose
17    --    This is the public procedure which raises an event to update collaboration
18    --    passing these parameters so obtained.This procedure requires only
19    --    p_internal_control_number. This procedure is called from the root of XGM map
20    --
21    -- Arguments
22    --
23    -- Notes
24    --    No specific notes.
25 
26    PROCEDURE RAISE_UPDATE_EVENT(
27          x_return_status                OUT NOCOPY VARCHAR2,
28          x_msg_data                     OUT NOCOPY VARCHAR2,
29          p_orig_ref                     IN VARCHAR2,
30          p_delivery_doc_id              IN VARCHAR2,
31          p_internal_control_number      IN NUMBER,
32          p_partner_document_number      IN VARCHAR2 );
33 
34    -- Name
35    --    REQ_ORDER_INF
36    -- Purpose
37    --    This API checks for the repeating tag value of RequestingOrderInformation and
38    --    based on few parameters decides the value for other tags.
39    --
40    -- Arguments
41    --
42    -- Notes
43    --    No specific notes.
44 
45    PROCEDURE REQ_ORDER_INF(
46          x_return_status                IN OUT NOCOPY VARCHAR2,
47          x_msg_data                     IN OUT NOCOPY VARCHAR2,
48          p_gb_doc_code                  IN VARCHAR2,
49          p_gb_partner_role              IN VARCHAR2,
50          p_doc_identifier               IN VARCHAR2,
51          x_cust_po_number               IN OUT NOCOPY VARCHAR2,
52          x_delivery_name                IN OUT NOCOPY VARCHAR2 );
53 
54 
55    -- Name
56    --    UPDATE_NEW_DEL_INTERFACE
57    -- Purpose
58    --    This API updates the wsh_new_del_interface table with the waybill
59    --    based on the delivery interface id inputted.
60    --
61    -- Arguments
62    --
63    -- Notes
64    --    No specific notes.
65 
66    PROCEDURE UPDATE_NEW_DEL_INTERFACE(
67          x_return_status                IN OUT NOCOPY VARCHAR2,
68          x_msg_data                     IN OUT NOCOPY VARCHAR2,
69          p_delivery_interface_id        IN VARCHAR2,
70          p_delivery_name                IN VARCHAR2,
71          p_waybill                      IN VARCHAR2 );
72 
73 
74 END CLN_NOTIFY_SHIPCONF_PKG;
75