DBA Data[Home] [Help]

APPS.FA_FAS741_XMLP_PKG dependencies on FA_LOOKUPS

Line 117: from fa_lookups

113: l_meaning VARCHAR2(80);
114: BEGIN
115: select meaning
116: into l_meaning
117: from fa_lookups
118: where lookup_type = 'ASSET TYPE'
119: and lookup_code = 'CIP';
120: RETURN(l_meaning);
121: END;

Line 130: from fa_lookups

126: l_meaning VARCHAR2(80);
127: BEGIN
128: select meaning
129: into l_meaning
130: from fa_lookups
131: where lookup_type = 'ASSET TYPE'
132: and lookup_code = 'CAPITALIZED';
133: return(l_meaning);
134: END;

Line 143: from FA_LOOKUPS

139: l_meaning VARCHAR2(80);
140: BEGIN
141: select meaning
142: into l_meaning
143: from FA_LOOKUPS
144: where lookup_type = 'ASSET TYPE'
145: and lookup_code = 'EXPENSED';
146: return(l_meaning);
147: END;