DBA Data[Home] [Help]

PACKAGE: APPS.EC_OUTBOUND

Source


1 PACKAGE ec_outbound as
2 -- $Header: ECOUBS.pls 120.2 2005/09/29 11:11:42 arsriniv ship $
3 
4 /**
5 Global Variables for Outbound Transaction.
6 **/
7 g_key_column_pos	pls_integer;
8 g_tp_code_pos		pls_integer;
9 
10 /**
11 Main procedure call for Processing Outbound Documents.
12 **/
13 procedure process_outbound_documents
14         	(
15         	i_transaction_type      IN      varchar2,
16         	i_map_id                IN      pls_integer,
17 		i_run_id		OUT  NOCOPY	pls_integer
18         	);
19 
20 /**
21 This file will delete all records in a staging table without using the
22 expense parsing of dbms_sql package.  The RUN_ID parameter is the only required parameter.
23 The DOCUMENT_ID parameter can be optionally used to delete one document from the staging table
24 at a time.
25 **/
26 procedure delete_stage_data
27 	(
28 	i_run_id		IN	number,
29 	i_document_id		IN	number DEFAULT NULL
30 	);
31 
32 end ec_outbound;