DBA Data[Home] [Help]

APPS.AHL_FMP_COMMON_PVT dependencies on FND_TERRITORIES_VL

Line 928: FROM FND_TERRITORIES_VL

924:
925: CURSOR get_rec_from_value ( c_country_name VARCHAR2 )
926: IS
927: SELECT DISTINCT territory_code
928: FROM FND_TERRITORIES_VL
929: WHERE territory_short_name = c_country_name;
930:
931: CURSOR get_rec_from_id ( c_country_code VARCHAR2 )
932: IS

Line 934: FROM FND_TERRITORIES_VL

930:
931: CURSOR get_rec_from_id ( c_country_code VARCHAR2 )
932: IS
933: SELECT DISTINCT territory_code
934: FROM FND_TERRITORIES_VL
935: WHERE territory_code = c_country_code;
936:
937: BEGIN
938: x_return_status := FND_API.G_RET_STS_SUCCESS;