DBA Data[Home] [Help]

PACKAGE: APPS.FND_RT_REQUEST

Source


1 PACKAGE fnd_rt_request AUTHID CURRENT_USER AS
2 /* $Header: AFRTREQS.pls 115.1 99/07/16 23:27:30 porting sh $ */
3 
4     PROCEDURE get_test_id(testid IN OUT INTEGER);
5     -- Get a unique value of test_id that can be used
6     -- to uniquely identify a regression test.
7     -- This procedure uses the FND_RT_REQUESTS_S sequence
8     -- to generate unique values.
9 
10     PROCEDURE log_request(testid 	IN INTEGER,
11 			  requestid    IN INTEGER);
12     -- Create a new record in the FND_RT_REQUESTS table using
13     -- the given test_id and request_id.
14 
15     PROCEDURE search_requests(testid 	IN INTEGER,
16                               timeout   IN INTEGER);
17     -- Search for all the child requests in FND_CONCURRENT_REQUESTS table
18     -- for all the parent in the testid
19     -- Insert all the children requests into FND_RT_REQUESTS table
20 
21     PROCEDURE get_request(testid 	IN INTEGER,
22 			 requestid     OUT INTEGER);
23     -- Get the next request id for the given test_id
24     -- and delete the record from the FND_RT_REQUESTS table.
25 END fnd_rt_request;