DBA Data[Home] [Help]

PACKAGE: APPS.FND_CONC_MAINTAIN

Source


1 package FND_CONC_MAINTAIN AUTHID CURRENT_USER as
2 /* $Header: AFCPMNTS.pls 115.3 2002/10/24 22:42:40 tmorrow ship $ */
3 
4 
5 /* APPS_INITIALIZE_FOR_MGR-
6 **   Initialize the application context (userid, respid, etc) if it hasn't
7 **   already been set.  This will point to a special user APPSMGR which
8 **   is used for running requests to maintain the data.
9 **   This should be called before submitting requests in places like loaders
10 **   where there is no user signed in.
11 **   If another user has already signed in, this will not switch users.
12 **   returns TRUE on success, FALSE on failure.
13 */
14 PROCEDURE apps_initialize_for_mgr;
15 
16 
17 
18 /*
19 ** GET_PENDING_REQUEST_ID-
20 ** Returns zero if the request ID isn't pending right away.
21 */
22 FUNCTION get_pending_request_id
23   (p_application_short_name  IN VARCHAR2,
24    p_concurrent_program_name IN VARCHAR2)
25 RETURN number;
26 
27 end FND_CONC_MAINTAIN;