DBA Data[Home] [Help]

APPS.CSC_CORE_UTILS_PVT dependencies on FND_LOOKUPS

Line 46: FROM fnd_lookups

42:
43: CURSOR g_lookups ( c_lookup_type VARCHAR2,
44: c_lookup_code VARCHAR2 ) IS
45: SELECT meaning
46: FROM fnd_lookups
47: WHERE lookup_type = c_lookup_type
48: AND lookup_code = c_lookup_code;
49:
50:

Line 450: -- lookupcode exists in fnd_lookups. Returns FND_API.G_RET_STS_SUCCESS

446: --
447:
448: -- Description:
449: -- A function for lookupcode validation. Used to validate a date tracked
450: -- lookupcode exists in fnd_lookups. Returns FND_API.G_RET_STS_SUCCESS
451: -- if the lookup code exists else returns FND_API.G_RET_STS_ERROR if the
452: -- lookup code doesnt exist or if not enabled or if it doesnt exist for
453: -- the specified period (p_effective_date).
454: --