DBA Data[Home] [Help]

APPS.AK_ON_OBJECTS_PVT dependencies on FND_APPLICATION

Line 222: from fnd_application_vl

218: p_application_id_out OUT NOCOPY NUMBER
219: ) is
220: cursor l_get_appl_id_csr (short_name_param varchar2) is
221: select application_id
222: from fnd_application_vl
223: where application_short_name = short_name_param;
224: l_api_version_number CONSTANT number := 1.0;
225: l_api_name CONSTANT varchar2(30) := 'Download_Header';
226: l_application_id number;

Line 3595: -- a valid application ID in the FND_APPLICATION table.

3591: -- API should only be called by other APIs that are
3592: -- owned by the Core Modules Team (AK).
3593: --
3594: -- Desc This function checks to see if the given application ID is
3595: -- a valid application ID in the FND_APPLICATION table.
3596: --
3597: -- Results This function returns the standard p_return_status parameter
3598: -- indicating one of the standard return statuses :
3599: -- * Unexpected error

Line 3604: -- the FND_APPLICATION table.

3600: -- * Error
3601: -- * Success
3602: -- Parameters p_application_id : IN required
3603: -- The application ID that needs to be checked against
3604: -- the FND_APPLICATION table.
3605: -- This function will return TRUE if the application ID
3606: -- exists in the FND_APPLICATION table, or FALSE otherwise.
3607: --
3608: -- Version Initial version number = 1.0

Line 3606: -- exists in the FND_APPLICATION table, or FALSE otherwise.

3602: -- Parameters p_application_id : IN required
3603: -- The application ID that needs to be checked against
3604: -- the FND_APPLICATION table.
3605: -- This function will return TRUE if the application ID
3606: -- exists in the FND_APPLICATION table, or FALSE otherwise.
3607: --
3608: -- Version Initial version number = 1.0
3609: -- History Current version number = 1.0
3610: --=======================================================

Line 3618: from FND_APPLICATION

3614: p_application_id IN NUMBER
3615: ) return BOOLEAN is
3616: cursor l_check_appl_id_csr is
3617: select 1
3618: from FND_APPLICATION
3619: where application_id = p_application_id;
3620: l_api_version_number CONSTANT number := 1.0;
3621: l_api_name CONSTANT varchar2(30) := 'Valid_Application_ID';
3622: l_dummy number;