DBA Data[Home] [Help]

APPS.FND_PRINT dependencies on FND_PRINTER_STYLES

Line 22: from fnd_printer_styles

18: end if;
19:
20: select width, length
21: into p_width, p_length
22: from fnd_printer_styles
23: where printer_style_name = style;
24:
25: return true;
26:

Line 114: from fnd_printer_styles

110: VALIDSTYLE out nocopy varchar2) return boolean is
111:
112: cursor C1(MINW number, MAXW number, MINL number, MAXL number) is
113: select printer_style_name
114: from fnd_printer_styles
115: where width >= minw
116: and (maxw is null or width <= maxw)
117: and length >= minl
118: and (maxl is null or length <= maxl)