DBA Data[Home] [Help]

APPS.FND_AMP_PRIVATE dependencies on FND_LOOKUPS

Line 251: from fnd_lookups

247: when no_data_found THEN
248:
249: ltype := 'CP_PHASE_CODE';
250: select meaning into req_phase
251: from fnd_lookups
252: where lookup_code = upcode
253: and lookup_type = ltype;
254:
255: ltype := 'CP_STATUS_CODE';

Line 257: from fnd_lookups

253: and lookup_type = ltype;
254:
255: ltype := 'CP_STATUS_CODE';
256: select meaning into req_status
257: from fnd_lookups
258: where lookup_code = uscode
259: and lookup_type = ltype;
260:
261: end get_phase_and_status;