DBA Data[Home] [Help]

PACKAGE: APPS.GR_DISPATCH_HISTORY_PUB

Source


1 PACKAGE GR_DISPATCH_HISTORY_PUB  AS
2 /* $Header: GRPDSPHS.pls 120.0 2005/08/04 08:26:45 mgrosser noship $ */
3 
4 /*--------------------------------------------------------------------------------------
5   Procedure : create_dispatch_history
6   Descrption: The Dispatch History Public API will store details pertaining to the
7   distribution of Regulatory documents.  If the document itself has not already been
8   stored in the fnd_documents table, the eSignatures file upload API will be called
9   to do so.  The API can be called from within the E-Business Suite or by other sources,
10   such as 3rd Party applications.
11 ----------------------------------------------------------------------------------------*/
12 
13 PROCEDURE create_dispatch_history
14    (p_api_version          IN NUMBER,
15     p_init_msg_list        IN VARCHAR2,
16     p_commit               IN VARCHAR2,
17     p_item                 IN VARCHAR2,
18     p_organization_id      IN NUMBER,
19     p_inventory_item_id    IN NUMBER,
20     p_cas_number           IN VARCHAR2,
21     p_recipient_id         IN NUMBER,
22     p_recipient_site_id    IN NUMBER,
23     p_date_sent            IN DATE,
24     p_dispatch_method_code IN NUMBER,
25     p_document_id          IN NUMBER,
26     p_document_location    IN VARCHAR2,
27     p_document_name        IN VARCHAR2,
28     p_document_version     IN VARCHAR2,
29     p_document_category    IN VARCHAR2,
30     p_file_format          IN VARCHAR2,
31     p_file_description     IN VARCHAR2,
32     p_document_code        IN VARCHAR2,
33     p_disclosure_code      IN VARCHAR2,
34     p_language             IN VARCHAR2,
35     p_organization_code    IN VARCHAR2,
36     p_user_id              IN NUMBER,
37     p_creation_source  	   IN NUMBER,
38     x_return_status        OUT NOCOPY   VARCHAR2 ,
39     x_msg_count            OUT NOCOPY   NUMBER ,
40     x_msg_data             OUT NOCOPY   VARCHAR2
41 );
42 
43 
44 END GR_DISPATCH_HISTORY_PUB; -- Package spec