651: CURSOR c_usage_name(
652: c_usage_code IN VARCHAR2 )
653: IS
654: select meaning
655: from fnd_lookups
656: where lookup_type = 'JTF_RS_USAGE'
657: and lookup_code = c_usage_code;
658:
659: l_usage_name fnd_lookups.meaning%TYPE;
655: from fnd_lookups
656: where lookup_type = 'JTF_RS_USAGE'
657: and lookup_code = c_usage_code;
658:
659: l_usage_name fnd_lookups.meaning%TYPE;
660:
661: BEGIN
662:
663: