DBA Data[Home] [Help]

PACKAGE: APPS.ARP_BATCH_SOURCE

Source


1 PACKAGE ARP_BATCH_SOURCE AUTHID CURRENT_USER AS
2 /* $Header: ARPLBSUS.pls 120.2 2005/10/30 04:24:19 appldev ship $ */
3 
4 
5 /*---------------------------------------------------------------------------+
6  | PUBLIC PROCEDURE                                                          |
7  |    create_trx_sequence                                                    |
8  |                                                                           |
9  | DESCRIPTION                                                               |
10  |    This function dynamically creates trx_number sequences for batch       |
11  |    sources with automatic transaction numbering. It calls the             |
12  |    bb_dist.create_sequence() procedure so that this will work in          |
13  |    distributed environments.                                              |
14  |                                                                           |
15  | REQUIRES                                                                  |
16  |   p_batch_source_id							     |
17  |   P_last_number 							     |
18  |                                                                           |
19  | KNOWN BUGS                                                                |
20  |                                                                           |
21  | NOTES                                                                     |
22  |                                                                           |
23  | HISTORY                                                                   |
24  |    9-DEC-94  Charlie Tomberg   Created.				     |
25  |                                                                           |
26  +---------------------------------------------------------------------------*/
27 
28  PROCEDURE create_trx_sequence (
29 				 P_batch_source_id   IN   number,
30 				 P_org_id           IN   number default null, --SSA changes anukumar
31 				 P_last_number       IN   number
32 			       );
33 
34 
35 END ARP_BATCH_SOURCE;