1122: p_lookup_code in VARCHAR2)
1123: return VARCHAR2 is
1124: cursor csr_label_meaning is
1125: select meaning 1126: from hr_lookups 1127: where lookup_type = p_lookup_type
1128: and lookup_code = p_lookup_code;
1129:
1130: l_label_meaning varchar2(80);