35: where ORG.ORGANIZATION_ID = center_id;
36:
37: Cursor c_yes_no_meaning(p_code varchar2) is
38: Select meaning
39: from fnd_lookups
40: where lookup_type='YES_NO' and lookup_code= p_code;
41:
42: BEGIN
43:
219: l_meaning varchar2(80);
220: Begin
221: Select meaning
222: into l_meaning
223: from fnd_lookups
224: where lookup_type='YES_NO' and lookup_code= p_code;
225:
226: return(l_meaning);
227: