DBA Data[Home] [Help]

PACKAGE: APPS.QP_LIMIT_CONC_REQ

Source


1 PACKAGE QP_LIMIT_CONC_REQ AS
2 /* $Header: QPXTRANS.pls 120.1 2005/06/09 04:08:41 appldev  $ */
3 
4 ---+=======================================================================+
5 --|               Copyright (c) 2000 Oracle Corporation                   |
6 --|                       Redwood Shores, CA, USA                         |
7 --|                         All rights reserved.                          |
8 --+=======================================================================+
9 --| FILENAME                                                              |
10 --|    QPXTRANS.pls                                                       |
11 --|                                                                       |
12 --| DESCRIPTION                                                           |
13 --|     Spec. of concurrent program package QP_LIMIT_CONC_REQ             |
14 --|                                                                       |
15 --| HISTORY                                                               |
16 --|    21-May-2001 abprasad    Created                                    |
17 --|                                                                       |
18 --+======================================================================
19 
20 
21 --========================================================================
22 -- PROCEDURE : Update_Balances       PUBLIC
23 -- PARAMETERS:
24 --   x_retcode                  OUT VARCHAR2
25 --   x_errbuf                   OUT VARCHAR2
26 --   p_list_header_id           Identifier for the Modifier List
27 --   p_list_line_id             Identifier for the  Modifier line( Null or -1)
28 --   p_limit_id                 Identifier for limit
29 --   p_limit_balance_id         Identifier for the balance
30 --
31 -- COMMENT   : This is the concurrent program for updating the balances
32 --             once manual transactions are created. The scope of updation
33 --             can be Modifier level, Modifier line level, Limit balance
34 --             level or all levels.
35 --
36 --========================================================================
37 PROCEDURE Update_Balances
38 ( x_retcode                 OUT NOCOPY /* file.sql.39 change */ VARCHAR2
39 , x_errbuf                  OUT NOCOPY /* file.sql.39 change */ VARCHAR2
40 , p_list_header_id          IN NUMBER default null
41 , p_list_line_id            IN NUMBER default null  -- Must be -1 or null
42 , p_limit_id                IN NUMBER default null
43 , p_limit_balance_id        IN NUMBER  default null
44 ) ;
45 
46 END QP_LIMIT_CONC_REQ;
47