DBA Data[Home] [Help]

APPS.PA_PACRCBDT_XMLP_PKG dependencies on PA_LOOKUPS

Line 146: l_meaning pa_lookups.meaning%TYPE:=NULL;

142: /*srw.user_exit('FND SRWEXIT');*/null;
143: return (TRUE);
144: end;
145: function project_asset_type_dispformula(project_asset_type in varchar2) return char is
146: l_meaning pa_lookups.meaning%TYPE:=NULL;
147: begin
148: BEGIN
149: select meaning
150: into l_meaning

Line 151: from pa_lookups

147: begin
148: BEGIN
149: select meaning
150: into l_meaning
151: from pa_lookups
152: where lookup_type ='PROJECT_ASSET_TYPES'
153: and lookup_code=project_asset_type;
154: EXCEPTION
155: WHEN NO_DATA_FOUND THEN

Line 161: l_meaning pa_lookups.meaning%type;

157: END;
158: return(l_meaning);
159: end;
160: function event_type_dspformula(event_type in varchar2) return char is
161: l_meaning pa_lookups.meaning%type;
162: begin
163: BEGIN
164: select meaning
165: into l_meaning

Line 166: from pa_lookups

162: begin
163: BEGIN
164: select meaning
165: into l_meaning
166: from pa_lookups
167: where lookup_type ='CAPITAL_TYPE'
168: and lookup_code=event_type;
169: EXCEPTION
170: WHEN NO_DATA_FOUND THEN