DBA Data[Home] [Help]

APPS.AK_ON_OBJECTS_PVT dependencies on AK_LOOKUP_CODES

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

3753: -- API should only be called by other APIs that are
3754: -- owned by the Core Modules Team (AK).
3755: --
3756: -- Desc This function checks to see if the given lookup type and
3757: -- lookup code exists in the AK_LOOKUP_CODES table.
3758: --
3759: -- Results This function returns the standard p_return_status parameter
3760: -- indicating one of the standard return statuses :
3761: -- * Unexpected error

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

3763: -- * Success
3764: -- Parameters p_lookup_type : IN required
3765: -- The type of the lookup code to be verified
3766: -- p_lookup_code : IN required
3767: -- The lookup code to be verified against AK_LOOKUP_CODES
3768: -- This function will return TRUE if the lookup type and
3769: -- lookup code exists in the AK_LOOKUP_CODES table, or
3770: -- FALSE otherwise.
3771: --

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

3765: -- The type of the lookup code to be verified
3766: -- p_lookup_code : IN required
3767: -- The lookup code to be verified against AK_LOOKUP_CODES
3768: -- This function will return TRUE if the lookup type and
3769: -- lookup code exists in the AK_LOOKUP_CODES table, or
3770: -- FALSE otherwise.
3771: --
3772: -- Version Initial version number = 1.0
3773: -- History Current version number = 1.0

Line 3784: from AK_LOOKUP_CODES

3780: ) return BOOLEAN is
3781: cursor l_checklookup_csr (lookup_type_parm varchar2,
3782: lookup_code_parm varchar2)is
3783: select 1
3784: from AK_LOOKUP_CODES
3785: where lookup_type = lookup_type_parm
3786: and lookup_code = lookup_code_parm;
3787: l_api_version_number CONSTANT number := 1.0;
3788: l_api_name CONSTANT varchar2(30) := 'Valid_Application_ID';