DBA Data[Home] [Help]

PACKAGE: APPS.RCV_GARBAGE_COLLECTOR_SV

Source


1 PACKAGE RCV_GARBAGE_COLLECTOR_SV AUTHID CURRENT_USER as
2 /* $Header: RCVGARBS.pls 120.0.12010000.1 2008/07/24 14:35:26 appldev ship $  */
3 /*===========================================================================
4   PACKAGE NAME:		RCV_GARBAGE_COLLECTOR_SV
5 
6   DESCRIPTION:          Contains the server side APIs which will identify
7                         Garbage data.
8                         eg : Invalid/Missing PO numbers
9                         For Bug 2367174
10 
11   CLIENT/SERVER:	Server
12 
13   LIBRARY NAME          NONE
14 
15   OWNER:                SHVISWAN
16 
17   PROCEDURES/FUNCTIONS:
18 
19 ============================================================================*/
20 
21 /*===========================================================================
22   PROCEDURE NAME:	collect_garbage(v_request_id in  number)
23 
24   DESCRIPTION:          marks the rows in the rcv_transactions_interface and
25                         rcv_headers_interface that have either invalid or
26                         missing PO numbers.
27 
28   PARAMETERS:
29 
30   DESIGN REFERENCES:
31 
32   ALGORITHM:
33 
34   NOTES:
35 
36   OPEN ISSUES:
37 
38   CLOSED ISSUES:
39 
40   CHANGE HISTORY:       Created by SHVISWAN 13-MAY-02
41 
42                         BAO   24-OCT-02  bug2626270
43                               Added p_group_id as a new parameter.
44                               Changed v_request_id to p_request_id
45 
46 ===========================================================================*/
47 
48  PROCEDURE collect_garbage (p_request_id IN NUMBER,
49                             p_group_id   IN NUMBER); -- bug2626270
50 
51  END RCV_GARBAGE_COLLECTOR_SV;
52