DBA Data[Home] [Help]

PACKAGE BODY: APPS.FND_PURGE

Source


1 package body FND_PURGE as
2 /* $Header: AFCPPURB.pls 115.0 99/09/29 17:52:14 porting ship  $ */
3 
4   --
5   -- Name
6   --   requests
7   --
8   -- Purpose
9   --   It will purge the records that are belongs to a concurrent request.
10   -- Arguments
11   --   rec_table   : pl/sql table with request_id a one field.
12   --   start_range : starting number of the record in the rec_table for which
13   --                 purge is required.
14   --   end_range   : ending number of the record in the rec_table for which
15   --                 purge is recuired.
16   --
17 
18   PROCEDURE requests( rec_table    IN requests_tab_type,
19                     start_range  IN NUMBER,
20                     end_range    IN NUMBER) is
21   BEGIN
22       NULL;
23   END requests;
24 
25 
26   --
27   -- Name
28   --   managers
29   --
30   -- Purpose
31   --   It will purge the records that are belongs to a concurrent managers.
32   -- Arguments
33   --   rec_table   : pl/sql table with process_id as one field.
34   --   start_range : starting number of the record in the rec_table for which
35   --                 purge is required.
36   --   end_range   : ending number of the record in the rec_table for which
37   --                 purge is recuired.
38   --
39 
40   PROCEDURE managers( rec_table  IN managers_tab_type,
41                     start_range  IN NUMBER,
42                     end_range    IN NUMBER) is
43   BEGIN
44       NULL;
45   END managers;
46 
47 
48 end FND_PURGE;