DBA Data[Home] [Help]

APPS.FND_CONCURRENT dependencies on FND_LOOKUPS

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

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

Line 293: Fnd_Lookups Phase,

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

Line 294: Fnd_Lookups Status

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

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

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

Line 981: fnd_lookups L, fnd_application_vl A

977: begin
978: select PRINTER_NAME, user_printer_style_name, l.meaning
979: into printer, style, save_output
980: from fnd_concurrent_programs p, fnd_printer_styles_VL ps,
981: fnd_lookups L, fnd_application_vl A
982: where
983: l.lookup_code = p.SAVE_OUTPUT_FLAG
984: and l.lookup_type = ltype
985: and ps.printer_style_name = p.OUTPUT_PRINT_STYLE

Line 1478: Fnd_Lookups Phase,

1474: Status.Lookup_Code s_lookup_code,
1475: Phase.Meaning p_meaning, Status.Meaning s_meaning
1476: From Fnd_Concurrent_Requests R,
1477: Fnd_Concurrent_programs P,
1478: Fnd_Lookups Phase,
1479: Fnd_Lookups Status
1480: Where
1481: Phase.Lookup_Type = PHASE_LOOKUP_TYPE
1482: AND Phase.Lookup_Code = Decode(Status.Lookup_Code,

Line 1479: Fnd_Lookups Status

1475: Phase.Meaning p_meaning, Status.Meaning s_meaning
1476: From Fnd_Concurrent_Requests R,
1477: Fnd_Concurrent_programs P,
1478: Fnd_Lookups Phase,
1479: Fnd_Lookups Status
1480: Where
1481: Phase.Lookup_Type = PHASE_LOOKUP_TYPE
1482: AND Phase.Lookup_Code = Decode(Status.Lookup_Code,
1483: 'H', 'I',