DBA Data[Home] [Help]

APPS.AK_ON_OBJECTS_PVT dependencies on FND_APPLICATION

Line 230: from fnd_application_vl

226: p_application_id_out OUT NOCOPY NUMBER
227: ) is
228: cursor l_get_appl_id_csr (short_name_param varchar2) is
229: select application_id
230: from fnd_application_vl
231: where application_short_name = short_name_param;
232: l_api_version_number CONSTANT number := 1.0;
233: l_api_name CONSTANT varchar2(30) := 'Download_Header';
234: l_application_id number;

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

3686: -- API should only be called by other APIs that are
3687: -- owned by the Core Modules Team (AK).
3688: --
3689: -- Desc This function checks to see if the given application ID is
3690: -- a valid application ID in the FND_APPLICATION table.
3691: --
3692: -- Results This function returns the standard p_return_status parameter
3693: -- indicating one of the standard return statuses :
3694: -- * Unexpected error

Line 3699: -- the FND_APPLICATION table.

3695: -- * Error
3696: -- * Success
3697: -- Parameters p_application_id : IN required
3698: -- The application ID that needs to be checked against
3699: -- the FND_APPLICATION table.
3700: -- This function will return TRUE if the application ID
3701: -- exists in the FND_APPLICATION table, or FALSE otherwise.
3702: --
3703: -- Version Initial version number = 1.0

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

3697: -- Parameters p_application_id : IN required
3698: -- The application ID that needs to be checked against
3699: -- the FND_APPLICATION table.
3700: -- This function will return TRUE if the application ID
3701: -- exists in the FND_APPLICATION table, or FALSE otherwise.
3702: --
3703: -- Version Initial version number = 1.0
3704: -- History Current version number = 1.0
3705: --=======================================================

Line 3713: from FND_APPLICATION

3709: p_application_id IN NUMBER
3710: ) return BOOLEAN is
3711: cursor l_check_appl_id_csr is
3712: select 1
3713: from FND_APPLICATION
3714: where application_id = p_application_id;
3715: l_api_version_number CONSTANT number := 1.0;
3716: l_api_name CONSTANT varchar2(30) := 'Valid_Application_ID';
3717: l_dummy number;