DBA Data[Home] [Help]

APPS.OTA_OTARPSIS_XMLP_PKG dependencies on FND_LOOKUPS

Line 40: from fnd_lookups

36: where ORG.ORGANIZATION_ID = center_id;
37:
38: Cursor c_yes_no_meaning(p_code varchar2) is
39: Select meaning
40: from fnd_lookups
41: where lookup_type='YES_NO' and lookup_code= p_code;
42:
43: BEGIN
44:

Line 260: from fnd_lookups

256: l_meaning varchar2(80);
257: Begin
258: Select meaning
259: into l_meaning
260: from fnd_lookups
261: where lookup_type='YES_NO' and lookup_code= p_code;
262:
263: return(l_meaning);
264: