DBA Data[Home] [Help]

APPS.AK_ON_OBJECTS_PVT dependencies on AK_LOOKUP_CODES

Line 3662: -- lookup code exists in the AK_LOOKUP_CODES table.

3658: -- API should only be called by other APIs that are
3659: -- owned by the Core Modules Team (AK).
3660: --
3661: -- Desc This function checks to see if the given lookup type and
3662: -- lookup code exists in the AK_LOOKUP_CODES table.
3663: --
3664: -- Results This function returns the standard p_return_status parameter
3665: -- indicating one of the standard return statuses :
3666: -- * Unexpected error

Line 3672: -- The lookup code to be verified against AK_LOOKUP_CODES

3668: -- * Success
3669: -- Parameters p_lookup_type : IN required
3670: -- The type of the lookup code to be verified
3671: -- p_lookup_code : IN required
3672: -- The lookup code to be verified against AK_LOOKUP_CODES
3673: -- This function will return TRUE if the lookup type and
3674: -- lookup code exists in the AK_LOOKUP_CODES table, or
3675: -- FALSE otherwise.
3676: --

Line 3674: -- lookup code exists in the AK_LOOKUP_CODES table, or

3670: -- The type of the lookup code to be verified
3671: -- p_lookup_code : IN required
3672: -- The lookup code to be verified against AK_LOOKUP_CODES
3673: -- This function will return TRUE if the lookup type and
3674: -- lookup code exists in the AK_LOOKUP_CODES table, or
3675: -- FALSE otherwise.
3676: --
3677: -- Version Initial version number = 1.0
3678: -- History Current version number = 1.0

Line 3689: from AK_LOOKUP_CODES

3685: ) return BOOLEAN is
3686: cursor l_checklookup_csr (lookup_type_parm varchar2,
3687: lookup_code_parm varchar2)is
3688: select 1
3689: from AK_LOOKUP_CODES
3690: where lookup_type = lookup_type_parm
3691: and lookup_code = lookup_code_parm;
3692: l_api_version_number CONSTANT number := 1.0;
3693: l_api_name CONSTANT varchar2(30) := 'Valid_Application_ID';