DBA Data[Home] [Help]

PACKAGE: APPS.IEM_INTENT_DOCS_PVT

Source


1 PACKAGE IEM_INTENT_DOCS_PVT AUTHID CURRENT_USER as
2 /* $Header: iemvdocs.pls 115.3 2002/12/05 23:49:37 sboorela shipped $*/
3 -- Start of Comments
4 --  API name 	: create_item
5 --  Type	: 	Private
6 --  Function	: This procedure insert/delete a record in the table IEM_ACCOUNT_INTENT_DOCS
7 --  Pre-reqs	: 	None.
8 --  Parameters	:
9 --	IN
10 --		p_classification_id         IN NUMBER,
11 --			p_email_account_id            IN  NUMBER,
12 --			p_query_response               IN  VARCHAR2,
13 --
14 --	OUT
15 --   x_return_status	OUT	VARCHAR2
16 --
17 --	Version	: 1.0
18 --	Notes		:
19 --
20 -- End of comments
21 -- **********************************************************
22 
23 PROCEDURE create_item (p_classification_id         IN NUMBER,
24 			p_email_account_id            IN  NUMBER,
25 			p_query_response               IN  VARCHAR2,
26 			x_doc_seq_no		 OUT NOCOPY NUMBER,
27 		      x_return_status OUT NOCOPY VARCHAR2
28 			 );
29 
30 -- Start of Comments
31 --  API name 	: delete_item
32 --  Type	: 	Private
33 --  Function	: This procedure delete a record in the table IEM_ACCOUNT_INTENT_DOCS
34 --  Pre-reqs	: 	None.
35 --  Parameters	:
36 --	IN
37 --  p_account_intent_doc_id	in number,
38 
39 --	OUT
40 --   x_return_status	OUT	VARCHAR2
41 --
42 --	Version	: 1.0
43 --	Notes		:
44 --
45 -- End of comments
46 -- **********************************************************
47 
48 PROCEDURE delete_item (p_account_intent_doc_id	in number,
49 			      x_return_status OUT NOCOPY VARCHAR2
50 			 );
51 
52 END IEM_INTENT_DOCS_PVT;