DBA Data[Home] [Help]

APPS.FND_CONCURRENT dependencies on FND_LOOKUPS

Line 183: -- phase - Request phase ( from meaning in fnd_lookups )

179: -- appl_shortname - Application to which the program belongs
180: -- program - Program name ( appl and program information used
181: -- - only if request id is not provided )
182: -- Arguments ( output )
183: -- phase - Request phase ( from meaning in fnd_lookups )
184: -- status - Request status( for display purposes )
185: -- dev_phase - Request phase as a constant string so that it
186: -- - can be used for comparisons )
187: -- dev_status - Request status as a constatnt string

Line 291: Fnd_Lookups Phase,

287: phase_code, status_code,
288: phasem, statusm
289: From Fnd_Concurrent_Requests R,
290: Fnd_Concurrent_programs P,
291: Fnd_Lookups Phase,
292: Fnd_Lookups Status
293: Where
294: Phase.Lookup_Type = PHASE_LOOKUP_TYPE
295: AND Phase.Lookup_Code = Decode(Status.Lookup_Code,

Line 292: Fnd_Lookups Status

288: phasem, statusm
289: From Fnd_Concurrent_Requests R,
290: Fnd_Concurrent_programs P,
291: Fnd_Lookups Phase,
292: Fnd_Lookups Status
293: Where
294: Phase.Lookup_Type = PHASE_LOOKUP_TYPE
295: AND Phase.Lookup_Code = Decode(Status.Lookup_Code,
296: 'H', 'I',

Line 374: -- phase - Request phase ( from meaning in fnd_lookups )

370: -- Arguments (output)
371: -- User version of phase and status
372: -- Developer version of phase and status
373: -- Completion text if any
374: -- phase - Request phase ( from meaning in fnd_lookups )
375: -- status - Request status( for display purposes )
376: -- dev_phase - Request phase as a constant string so that it
377: -- - can be used for comparisons )
378: -- dev_status - Request status as a constatnt string

Line 912: fnd_lookups L, fnd_application_vl A

908: begin
909: select PRINTER_NAME, user_printer_style_name, l.meaning
910: into printer, style, save_output
911: from fnd_concurrent_programs p, fnd_printer_styles_VL ps,
912: fnd_lookups L, fnd_application_vl A
913: where
914: l.lookup_code = p.SAVE_OUTPUT_FLAG
915: and l.lookup_type = ltype
916: and ps.printer_style_name = p.OUTPUT_PRINT_STYLE

Line 1369: Fnd_Lookups Phase,

1365: Status.Lookup_Code s_lookup_code,
1366: Phase.Meaning p_meaning, Status.Meaning s_meaning
1367: From Fnd_Concurrent_Requests R,
1368: Fnd_Concurrent_programs P,
1369: Fnd_Lookups Phase,
1370: Fnd_Lookups Status
1371: Where
1372: Phase.Lookup_Type = PHASE_LOOKUP_TYPE
1373: AND Phase.Lookup_Code = Decode(Status.Lookup_Code,

Line 1370: Fnd_Lookups Status

1366: Phase.Meaning p_meaning, Status.Meaning s_meaning
1367: From Fnd_Concurrent_Requests R,
1368: Fnd_Concurrent_programs P,
1369: Fnd_Lookups Phase,
1370: Fnd_Lookups Status
1371: Where
1372: Phase.Lookup_Type = PHASE_LOOKUP_TYPE
1373: AND Phase.Lookup_Code = Decode(Status.Lookup_Code,
1374: 'H', 'I',